.hero-register {
    height: 20vh;
}

.sr-container {
    display: flex;
    flex-direction: row-reverse;
    justify-content: center;
    align-items: center;
    width: 1000px;
    height: 650px;
    background-color: var(--text-light);
    border-radius: 5px;
    box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.2);
}

.sr-c-form {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

.sr-c-form h1 {
    font-size: 38px;
    margin-bottom: .5rem;
    width: 260px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 20px;
    justify-self: center;
}

.section-register img {
    width: 40%;
    height: 100%;
    object-fit: cover;
    border-radius: 0 5px 5px 0;
}

.section-register .sr-c-form img {
    width: 200px;
    height: 50px;
    margin: 1rem 0 0 1rem;
    object-fit: contain;
    align-self: start;
    border-radius: 0;
}

.custom-register-form {
    width: 100%;
    height: 100%;
}

.custom-register-form 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-register-form 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;
}

.sr-c-f-content p {
    margin-top: .6rem;
}

.sr-c-social {
    height: 50px;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.sr-c-social i {
    color: var(--main-color);
    font-size: 30px;
    transition: all 0.3s ease;
}

.sr-c-social i:hover {
    color: var(--main-color-hover);
}

@media screen and (max-width: 1100px) {
    .sr-container {
        flex-direction: column;
        width: 100%;
        height: auto;
        padding: 20px;
    }

    .section-register img {
        display: none;
    }

    .sr-c-form h1 {
        font-size: 32px;
        width: 100%;
        text-align: center;
    }

    .custom-register-form input,
    .custom-register-form button {
        width: 100%;
    }
    
}