﻿body{
    height: 100%;
}
.sign-in-container {
    background-color: #f0f2f5;
    /*padding: 58px 0 0 58px;*/
    overflow: hidden;
    height: 100%;
}

.content-wrapper {
    display: flex;
    gap: 20px;
    height: 100%;
}

.form-column {
    display: flex;
    flex-direction: column;
    width: 50%;
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin-bottom: 94px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #000;
    font: 500 17px/41px Inter, sans-serif;
}

.account-prompt {
    display: flex;
    gap: 7px;
    font: 14px/1;
}

.account-prompt-text {
    color: #000;
    font-weight: 300;
}

.sign-up-link {
    color: #20dc49;
    font-weight: 500;
}

.welcome-title {
    color: #000;
    font: 600 36px/1;
    margin-bottom: 6px;
}

.login-subtitle {
    color: #000;
    font: 400 18px/2;
    margin-bottom: 38px;
}

.social-login {
    display: flex;
    gap: 14px;
    margin-bottom: 36px;
}

.google-button {
    border-radius: 5px;
    background-color: #fff;
    box-shadow: 0 5px 12px rgba(0, 0, 0, 0.05);
    display: flex;
    gap: 8px;
    padding: 0 25px;
    border: 1px solid #20dc49;
    color: #000;
    font: 500 12px/44px;
}

.divider {
    display: flex;
    align-items: center;
    gap: 11px;
    color: #000;
    font: 400 13px/1;
    margin-bottom: 34px;
}

.divider-line {
    flex-grow: 1;
    height: 1px;
    background-color: #000;
}

.input-field {
    border-radius: 10px;
    background-color: #fff;
    box-shadow: 0 5px 12px rgba(0, 0, 0, 0.05);
    width: 100%;
    max-width: 402px;
    color: #5a5a5a;
    padding: 29px 25px;
    font: 400 14px/1;
    border: 1px solid #d9d9d9;
    margin-bottom: 36px;
}

.password-field {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.login-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 35px;
}

.remember-me {
    display: flex;
    align-items: center;
    gap: 8px;
}

.carousel-item > img {
    width: 100dvw !important;
    height: 100dvh !important;
    object-fit: cover !important;
}

.toggle-switch {
    width: 40px;
    height: 20px;
    background-color: #ececec;
    border-radius: 20px;
    position: relative;
    cursor: pointer;
}

    .toggle-switch::after {
        content: '';
        position: absolute;
        width: 16px;
        height: 16px;
        border-radius: 50%;
        background-color: #fff;
        top: 2px;
        left: 2px;
        transition: 0.3s;
    }

.remember-me-text {
    color: #1a1a1a;
    font: 400 12px/2;
}

.recover-password-link {
    color: #d93f21;
    font: 300 14px/1;
}

.login-button {
    border-radius: 10px;
    width: 100%;
    max-width: 400px;
    color: #5a5a5a;
    padding: 20px;
    font: 400 18px/1;
    border: 1px solid #5a5a5a;
    cursor: pointer;
}

.image-column {
    width: 50%;
    position: relative;
    min-height: 900px;
}

.background-image {
    position: absolute;
    inset: 0;
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.overlay-content {
    position: absolute;
    bottom: 49px;
    left: 36px;
    right: 36px;
    border-radius: 10px;
    background-color: rgba(31, 38, 62, 0.33);
}

.carousel-inner {
    height: 100%;
}

.badge {
    border-radius: 10px;
    background-color: #20dc49;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: #000;
    padding: 12px 17px;
    font: 14px/1 Roboto, sans-serif;
    margin-bottom: 25px;
}

.overlay-text {
    color: #fff;
    font: 20px/33px;
}

@media (max-width: 991px) {
    .sign-in-container {
        padding-left: 20px;
    }

    .content-wrapper {
        flex-direction: column;
    }

    .form-column,
    .image-column {
        width: 100%;
    }

    .header {
        margin-bottom: 40px;
    }

    .image-column {
        margin-top: 40px;
        min-height: auto;
        padding: 100px 20px 0;
    }

    .overlay-content {
        position: relative;
        bottom: auto;
        left: auto;
        right: auto;
        padding: 20px;
    }
}
