.hero-login {
    height: 30vh;
}

.sl-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 1000px;
    height: 600px;
    background-color: var(--text-light);
    border-radius: 5px;
    box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.2);
}

.sl-c-info-login {
    background: var(--main-color);
    background: linear-gradient(32deg, var(--main-color-hover) 0%, rgb(228, 73, 81) 100%);    width: 100%;
    height: 100%;
    color: var(--text-light);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 0 1rem;
}

.sl-c-info-login h2 {
    margin: 0;
}

.section-login img {
    width: 40%;
    height: 100%;
    object-fit: cover;
    border-radius: 5px 0 0 5px;
}

.custom-login-form {
    width: 100%;
    height: 100%;
}

.sl-c-form {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 100%;
}

.sl-c-form h1 {
    font-size: 38px;
    margin-bottom: .5rem;
    width: 260px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.sl-c-form img {
    width: 200px;
    height: 50px;
    margin: 1rem 0 0 1rem;
    border-radius: 0;
    object-fit: contain;
    align-self: start;
}

.sl-c-f-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.custom-login-form p input {
    width: 360px;
    height: 40px;
    border-radius: 5px !important;
    border: 1px solid var(--text-gray-2) !important;
    background-color: var(--text-light) !important;
    margin-bottom: 20px;
}

.custom-login-form p button {
    width: 360px;
    height: 40px;
    border-radius: 5px;
    border: none;
    background-color: var(--main-color) !important;
    color: var(--text-light) !important;
    font-weight: 500;
    cursor: pointer;
    margin-top: 1rem !important;
    transition: all 0.3s ease;
}

.sl-c-f-content p {
    margin-top: .6rem;
}

.custom-login-form p button:hover {
    background-color: var(--main-color-hover) !important;
}

.custom-login-form p {
    margin: 0;
}

.sl-c-social {
    height: 50px;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.sl-c-social i {
    color: var(--main-color);
    font-size: 30px;
    transition: all 0.3s ease;
}

.sl-c-social i:hover {
    color: var(--main-color-hover);
}

@media screen and (max-width: 1100px) {
    .sl-container {
        width: 100%;
        height: 100%;
        padding: 20px;
    }

    .sl-c-info-login {
        display: none;
    }

    .section-login img {
        display: none;
    }

    .sl-c-form h1 {
        font-size: 28px;
        width: 100%;
    }

    .custom-login-form p input,
    .custom-login-form p button {
        width: 100%;
    }
    
}