* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body, html {
    height: 100%;
    font-family: IBM Plex Mono;
}

.row.w-100 {
    min-height: 100vh;
}

.col-lg-5 {
    padding: 40px 20px;
    background-color: var(--color-2);
    color: var(--white);
}

.col-lg-5 h2,
.col-lg-5 .label,
.col-lg-5 .form-text,
.col-lg-5 .text-link,
.col-lg-5 p {
    color: var(--white);
}

.form-text a.text-link,
.col-lg-5 .forgot-password {
    color: var(--color-3);
}

.form-text a.text-link:hover {
    color: var(--white);
}

form {
    width: 90%;
    max-width: 90%;
}

.form-btn {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 40px; 
}

.form-text {
    text-align: center;
    font-size: 12px;
    width: 100%;
    font-family: IBM Plex Mono;
}

.label {
    display: block;
    font-size: 16px;
    margin-bottom: 8px;
    font-family: IBM Plex Mono;
    color: var(--color-1);
}

.label.required::after {
    content: " *";
    color: var(--red);
}

.input {
    width: 100%;
    padding: 10px 15px;
    background: #fff;
    border: 1px solid hsl(210, 14%, 83%); 
    border-radius: 4px; 
    outline: none;
    color: var(--color-8); 
    font-size: 16px;
    font-family: IBM Plex Mono;
}

.input:focus {
    border-color: var(--color-8);
    box-shadow: 0 0 0 0.2rem rgba(234, 234, 234, 0.5); 
}

.bttn {
    width: 140px;
    background: var(--color-3);
    color: var(--color-1);
    padding: 10px 20px;
    border: none;
    border-radius: 40px;
    cursor: pointer;
    font-size: 18px;
    font-family: IBM Plex Mono;
    font-weight: bold;
    transition: 0.3s ease;
    margin-bottom: 20px;
}

.bttn:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.3);
    background-color: var(--color-1);
    color: var(--white);
}

.forgot-password {
    float: right;
    color: var(--color-4);
    font-size: 16px;
    font-family: IBM Plex Mono;
    text-decoration: none;
    margin-top: 8px;
    margin-bottom: 50px;
}

.forgot-password:hover,
.text-link:hover {
    text-decoration: underline;
    color: var(--white);
}

.text-link {
    color: var(--color-4);
    text-decoration: underline;
    font-size: 16px;
}

.right-image-container {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px;
    background-color: var(--white);
}

.right-image-container img {
    max-height: 80%;
    max-width: 90%;
    object-fit: contain;
}

h2 {
    font-family: IBM Plex Mono;
    line-height: 24px;
    font-weight: 600; 
    color: var(--color-2);
}

p {
    font-family: IBM Plex Mono;
    font-size: 16px;
    line-height: 24px;
}

@media (min-width: 992px) {
    .col-lg-5 {
        flex: 0 0 auto;
        width: 35%;
    }
    .col-lg-7 {
        flex: 0 0 auto;
        width: 65%;
    }
}
@media (max-width: 991.98px) {
    .row.w-100 {
        flex-direction: column;
    }
    .col-12 {
        width: 100%;
    }
    .right-image-container {
        padding: 20px;
        height: auto;
    }
}

.password-wrapper {
        position: relative;
        width: 100%;
}

.password-wrapper input {
    width: 100%;
    padding-right: 40px;
    border-radius: 8px;
    height: 40px;
    font-size: 1rem;
}

.password-wrapper .toggle-password {
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    cursor: pointer;
    color: var(--black);
    font-size: 1.1rem;
}