/* Register */
#register-card {
    margin-top: 10px;
    z-index: 1;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    max-width: 900px;
    width: 100%;
    background: var(--bg-secondary);
    position: relative;
    overflow: hidden;
    color: var(--text-color);
    height: 100%;
}
#register-card h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--text-color);
}

#register-card p {
    font-size: 16px;
    color: #999;
}

#register-card .form-label {
    font-weight: 600;
}

#register-card .form-control,
#register-card .form-select {
    border-radius: 10px;
    height: 45px;
}

#register-card .btn-success {
    border-radius: 10px;
    font-size: 18px;
    font-weight: 600;
    background-color: #00132E;
    border-color: #00132E;
}

#register-card a {
    color: #5cb85c;
    font-weight: 600;
}
#image-section {
    background: url("../auto/images/bg1.e57e771ea14a.webp") no-repeat center center;
    background-size: cover;
    position: relative;
    border-top-right-radius: 20px;
    border-bottom-right-radius: 20px;
    clip-path: polygon(25% 0%, 100% 0%, 75% 100%, 0% 100%);
}
/* Small devices (landscape phones, 576px and up)*/
@media only screen and (max-width: 768px) {
    #register-card {
        height: 100%;
        overflow: visible;
    }
}