﻿.login-page, .register-page {
    background-color: #fff;
    min-height: 100vh;
    padding-top: 24px;
    padding-bottom: 24px;
}

.login-form-area {
    display: flex;
    flex-direction: column;
    row-gap: 36px;
}

.login-form-description {
    font-family: Poppins;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    text-align: left;
    color: #505C74;
}

.login-form-buttons ul {
    display: flex;
    align-items: center;
    padding: 0;
    margin: 0;
    list-style: none;
    column-gap: 1rem;
}

.login-form-buttons ul li a {
    font-family: Poppins;
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
    color: #505C74;
}

    .login-form-buttons ul li a.active {
        text-decoration: underline;
        text-decoration-color: #096FFE;
        text-underline-offset: 16px;
        color: #096FFE;
    }


.login-form .input-group {
    flex-direction: column;
    row-gap: 12px;
}

    .login-form .input-group label {
        font-family: Poppins;
        font-size: 14px;
        font-weight: 500;
        line-height: 20px;
        text-align: left;
        color: #344054;
        margin: 0;
    }

    .login-form .input-group input {
        width: 100%;
        font-family: Poppins;
        font-size: 16px;
        font-weight: 400;
        line-height: 24px;
        text-align: left;
        padding: 15px;
        height: unset;
        border: 1px solid #E4E7EC;
        border-radius: 8px !important;
        box-shadow: 0px 1px 2px 0px #1018280D;
    }

.login-form .submit-button {
    width: 100%;
    font-family: Poppins;
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
    color: #fff;
    border: 1px solid #096FFE;
    background: #096FFE;
    padding: 20px 12px;
    border-radius: 12px;
}

.form-checkbox {
    display: flex;
    flex-direction: column;
    row-gap: 1rem;
}

    .form-checkbox .form-check {
        padding-left: 32px;
        display: flex;
        align-items: center;
    }

    .form-checkbox .form-check label {
        font-family: Poppins;
        font-size: 14px;
        font-weight: 400;
        line-height: 24px;
        text-align: left;
        color: #243351;
    }

        .form-checkbox .form-check input {
            width: 20px;
            height: 20px;
            margin-left: -32px;
            margin-top: 0;
        }

.custom-control-input {
    width: 20px;
    height: 20px;
}

.custom-control.custom-checkbox {
    padding-left: 32px;
    display: flex;
    align-items: center;
}


.custom-checkbox .custom-control-input:checked ~ .custom-control-label::before {
    border-color: #096ffe;
}

.custom-checkbox .custom-control-input:focus ~ .custom-control-label::before {
    border-color: #c7c7c7;
    outline: none;
    box-shadow: none;
}

/* Checkbox kutusu boşken border rengini değiştirmek */
.custom-checkbox .custom-control-label::before {
    border-color: #c7c7c7;
    width: 20px;
    height: 20px;
    top: 50%;
    left: -32px;
    transform: translate(0, -50%);
    background: #fff;
    box-shadow: none;
}

.custom-checkbox .custom-control-label::after {
    border-color: #c7c7c7;
    width: 20px;
    height: 20px;
    top: 50%;
    left: -32px;
    transform: translate(0, -50%);
}

.security-code-modal .modal-body {
    padding: 40px 24px;
    padding-bottom: 40px; 
}

.security-code-modal .login-button {
    padding: 12px;
    width: 100%;
    border-radius: 8px;
    font-family: Poppins;
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
    color: #fff;
    background-color: #096FFE !important;
    border: 1px solid #096FFE !important;
}

.resend-code {
    font-size: 16px;
    line-height: 24px;
    font-family: 'Poppins';
    display: flex;
    justify-content: center;
    column-gap: 16px;
    align-items: center;
    margin-bottom: 0;
}


.security-code-input {
    width: 100%;
    font-family: Poppins;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    text-align: left;
    padding: 15px;
    height: unset;
    border: 1px solid #E4E7EC;
    border-radius: 8px !important;
    box-shadow: 0px 1px 2px 0px #1018280D;
}

@media only screen and (max-width: 991px) {
    .login-signup-image-area
    {
        display: none;
    }
}