body {
    font-family: 'Inter', sans-serif;
    background: #0e0f14;
    color: #fff;
}

.gradient-text {
    background: linear-gradient(90deg, #6a5cff, #00d4ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: radial-gradient(circle at top, #1b1f3b, #0e0f14);
}

.btn-primary {
    background: linear-gradient(90deg, #6a5cff, #00d4ff);
    border: none;
}

.feature-card {
    background: #151726;
    border-radius: 16px;
    padding: 25px;
    height: 100%;
    transition: .3s;
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, .4);
}

.section-padding {
    padding: 80px 0;
}

.badge-soft {
    background: #1e2140;
    color: #9aa3ff;
    border-radius: 20px;
    padding: 6px 14px;
}

@media (min-width: 992px) {
    .navbar-expand-lg .navbar-collapse {
        justify-content: right;
    }
}

.modal.modal-xl .modal-body {
    height: 64vh;
    overflow: auto;
}

.upload_btn {
    position: relative;
}

.upload_btn input {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    z-index: 1;
}

#loader {
    display: flex;
    position: fixed;
    width: 100%;
    height: 100%;
    justify-content: center;
    align-items: center;
    z-index: 1;
    background: #00000060;
    display: none;
}

#logocontainer {
    position: relative;
    width: 26vh;
    height: 26vh;
    overflow: hidden;
    transition: background-color 500ms;
    cursor: default;
}

#pelogo {
    width: 100%;
    height: 100%;
    color: #142969;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: pelogo 3s ease-in-out infinite;
}

@keyframes pelogo {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.12);
    }

    100% {
        transform: scale(1);
    }
}

#pelogo p {
    margin-bottom: 0;
    font-size: 18px;
}

.loader2 {
    display: block;
    position: absolute;
    background-color: #142969;
}

/*Pretty complex animation, so each side needs its own @keyframes.*/

@keyframes slide1 {
    50% {
        width: 32vh;
        margin-left: 0;
    }

    100% {
        margin-left: 32vh;
    }
}

@keyframes slide2 {
    50% {
        height: 32vh;
        margin-top: 0;
    }

    100% {
        margin-top: 32vh;
    }
}

@keyframes slide3 {
    50% {
        width: 32vh;
        margin-right: 0;
    }

    100% {
        margin-right: 32vh;
    }
}

@keyframes slide4 {
    50% {
        height: 32vh;
        margin-bottom: 0
    }

    100% {
        margin-bottom: 32vh;
    }
}

.form-label {
    margin-bottom: .2rem;
}

#mail_body {
    display: none;
}

.mail_body {
    width: 100%;
    height: 8.8rem;
    border: var(--bs-border-width) solid var(--bs-border-color);
    border-radius: 6px;
    overflow: auto;
    padding: 6px 8px;
}

#preview_placeholder {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    height: 100%;
    gap: 1rem;
}

#preview_placeholder .prevdiv {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    border: 2px dashed gray;
    max-width: 100%;
    cursor: pointer;
    position: relative;
    border-radius: 20px;
}

#preview_placeholder .prevdiv i {
    font-size: 4rem;
    color: gray;
}

#preview_placeholder .prevdiv h6 {
    font-size: 1.6rem;
    color: gray;
}

#preview_placeholder .prevdiv #attachmentUpload {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0;
}

#edit_msg,
#more_options,
#schedule_time {
    display: none;
}

.atch_prev_outer {
    display: flex;
    align-items: center;
    border: 1px solid #bd2438;
    border-radius: 6px;
    font-size: 13px;
    margin-top: .4rem;
    margin-bottom: .4rem;
}

.atch_prev_outer span {
    background: #bd2438ed;
    height: 32px;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    border-radius: 4px 0 0 4px;
    margin-right: 8px;
}

.atch_prev_outer p {
    margin-bottom: 0;
}

.atch_prev_outer p strong {
    color: #bd2438;
}

button i {
    font-size: 1.2rem;
}

.p_link {
    color: #0d6efd;
    cursor: pointer;
}

@media (min-width: 992px) {
    .navbar-expand-lg .navbar-collapse {
        justify-content: right;
    }
}
.modal{
    color: #000000;
}