﻿* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Poppins;
}
.card-account {
    box-shadow: 4px 6px 24px 0px #6D8DAD40;
    background-color: #F7F8F9;
    width: 70%;
    position: fixed;
    left:0;
    top:0;
    z-index: -1;
    min-height: calc(100vh)
}

.text-blue {
    color: #02B7C2 !important;
}

.container-main {
    min-height: calc(100vh - 64px);
}

.account-logo{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 5px;
}

    .account-logo img {
        height: 42px;
        width: 42px;
    }

    .account-logo h2 {
        font-family: Poppins;
        font-weight: 700;
        font-size: 28.94px;
        color: #001435;
    }

.account-container{
    align-items: center;
    justify-content: space-between;
    min-height: 700px;
}

.card-detail {
    border-radius: 14px;
    background: var(--Color-5, #FFF);
    box-shadow: 4px 6px 24px 0px rgba(109, 141, 173, 0.10);
    border: none;
}

.card-detail .card-body{
    padding: 50px 60px;
}

    .card-detail h3 {
        color: var(--typography, #000);
        font-family: Poppins;
        font-size: 39.741px;
        font-weight: 500;
    }

    .card-detail p {
        color: #748194;
        font-family: Poppins;
        font-size: 19.019px;
        font-weight: 400;
    }

    .card-detail label {
        color: #000;
        font-family: Poppins;
        font-size: 19.019px;
        font-weight: 400;
    }

    .card-detail input {
        border-radius: 2.717px;
        border: 1.359px solid #04B4C7;
        color: #748194;
        font-family: Poppins;
        font-size: 14px;
        font-weight: 400;
        padding: 10px;
    }

    .card-detail .forget-link {
        color: #02B7C2;
        font-family: Poppins;
        font-size: 14px;
        font-weight: 400;
        line-height: 24px;
        text-decoration-line: underline;
        text-decoration-style: solid;
        text-decoration-skip-ink: none;
        text-decoration-thickness: auto;
        text-underline-offset: auto;
        text-underline-position: from-font;
    }

    .card-detail .form-check-label {
        color: #748194;
        font-family: Poppins;
        font-size: 14px;
        font-style: normal;
        font-weight: 400;
        line-height: 24px;
    }

        .card-detail .form-check-label a {
            color: #748194;
            font-family: Poppins;
            font-size: 14px;
            font-style: normal;
            font-weight: 400;
            line-height: 24px;
        }

.welcome-text p {
    font-family: Poppins;
    font-weight: 400;
    font-size: 16px;
    text-align: center;
    margin-bottom: 0;
    color: #748194;
}

.lead {
    color: #001435;
    text-align: center;
    font-family: Poppins;
    font-size: 25.164px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

.copyright {
    background-color: #04B4C7;
    padding: 20px
}

.copyright p{
    font-family: Poppins;
    font-weight: 400;
    font-size: 16px;
    color: #FFFFFF;
    text-align: center;
    margin: 0;

}


.btn-primary {
    border-radius: 4.968px;
    background: #04B4C7;
    color: #FFF;
    text-align: center;
    font-family: Poppins;
    font-size: 19.871px;
    font-weight: 400;
    border: none;
}

    .btn-primary:hover {
        background: #079aaa;
        border: none;
    }

.btn-primary:focus {
    background: #04B4C7;
}


.form-check-input {
    appearance: none;
    width: 16px;
    height: 16px;
    border: 2px solid #04B4C7;
    border-radius: 3px;
    position: relative;
    cursor: pointer;
    vertical-align: middle;
}

.form-check-input:checked {
    background-color: white;
}

    .form-check-input:checked::after {
        content: "\2713"; /* Unicode for checkmark */
        font-size: 14px;
        color: #04B4C7;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

.btn-outline-primary {
    border-radius: 4.968px;
    background: rgba(158, 179, 201, 0.10);
    border: none;
    color: #001435;
    text-align: center;
    font-family: Poppins;
    font-size: 19.871px;
    font-weight: 400;
}

    .btn-outline-primary:hover {
        background: rgb(31 93 158 / 10%);
        color: #001435;
        border: none;
    }


.input-group .form-control {
    border-right: none;
}

.input-group .btn-outline-secondary {
    border: 1.36px solid #04B4C7;
    color: #04B4C7;
    border-left: none;
    box-shadow: none !important;
}

    .input-group .btn-outline-secondary i {
        font-size: 22px;
    }

    .input-group .btn-outline-secondary:hover {
        background-color: transparent !important;
        color: #04B4C7 !important;
        box-shadow: none !important;
    }

.custom-fluid {
    max-width: 65%;
    height: auto;
}



@media(max-width: 992px){
    .card-account {
        width: 100%;
    }

    .account-container{
        min-height: auto;
        padding: 25px 15px;
    }

    .welcome-text{
        margin-bottom: 15px;
    }

    .card-detail .card-body {
        padding: 1.5rem;
    }
}