.signIn {
    max-width: 1000px;
    margin: 80px auto;
    display: flex;
    border-radius: 12px;
    min-height: 700px;
    box-shadow: var(--shadow-small);
    border: 1px solid #DDD;
}

.signInPicture {
    flex: 1;
    border-radius: 12px 0 0 12px;
    overflow: hidden;
    position: relative;
    z-index: 2;
}

.signInPictureImage {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.signInCardWrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex: 1;
    padding: 0 40px;
    background-color: #FFFFFF;
    border-radius: 0 12px 12px 0;
}

.signInCard {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
}

.signInCardTitle {
    font-size: 1.5rem;
    color: var(--color-green);
    margin: 0 0 1.5rem 0;
    text-align: center;
    font-weight: 600;
}

.signInCardAlert {
    display: none;
    margin-bottom: 2rem;
}

.signInCardAlert.active {
    display: block;
}

.signInCardForm {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.signInCardFormRememberMe {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    flex-direction: row-reverse;
    justify-content: start;
    gap: 10px;
}

.signInCardFormRememberMeLabel {
    font-size: 14px;
    color: #484848;
}

.signInCardFormRememberMe input {
    width: auto;
}

.signInCardFormButton {
    margin-bottom: 12px;
}

.signInCardForgotPassword {
    display: block;
    font-size: 0.875rem;
    text-align: center;
    text-decoration: none;
    margin-bottom: 30px;
    color: #484848;
}

.signInCardForgotPassword:hover {
    text-decoration: underline;
}

.signInCardCreateAnAccount {
    display: block;
    position: relative;
    text-decoration: none;
    transition: color 0.3s;
    width: fit-content;
    margin: 0 auto 50px auto;
    text-align: center;
    color: #494949;
    font-size: 16px;
}

.signInCardCreateAnAccount:hover {
    color: var(--color-green);
}

.signInCardSocial {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
}

.signInCardSocialButton {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #353c4a;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
    0 2px 4px -1px rgba(0, 0, 0, 0.06);
    border-radius: 50%;
    transition: 250ms;
    overflow: hidden;
    position: relative;
    background-color: #FFFFFF;
    cursor: pointer;
    border: 1px solid #f3f3f3;
}

.signInCardSocialButton:hover {
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.signInCardSocialButtonImage {
    width: 24px;
    height: 24px;
}

@media (max-width: 768px) {
    .signIn {
        box-shadow: none;
        margin: 0 auto;
    }

    .signInPicture {
        display: none;
    }

    .signInCardWrapper {
        background-color: transparent;
        border-radius: 0;
        padding: 0 12px;
    }
}