
.navbar-brand img {
    width: 149px;
}
.navbar input {
    height: 30px;
    padding: 5px;
}
.navbar label {
    font-size: 14px;
}
form input[type="checkbox"]{
    vertical-align: middle;
}
/* sign up form */
.sign-up-form div {
    margin-bottom: 5px;
}
.user-name-notice {
    font-size: 10px;
    margin-bottom: 0;
}
.pristine-error {
    display: none;
}
.form-group input:not(:focus) + .pristine-error {
    display: table;
}
.form-group select:not(:focus) + .pristine-error {
    display: table;
}
@media(max-width: 1200px) {
    .navbar form {
        width: 100%;
    }
}

/* Welcome box - allow natural expansion */
.welcome-box {
    padding-bottom: 20px;
    height: auto !important;
    max-height: none !important;
    overflow: visible;
}

.welcome-box .welcome-text {
    line-height: 1.7;
    margin-bottom: 15px;
}

.welcome-box .welcome-signature {
    margin-bottom: 25px;
    line-height: 1.6;
}

/* Responsive video container using padding-bottom trick */
.video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    margin-top: 20px;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
    border-radius: 8px;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 8px;
}

/* Form alignment improvements */
.registration-form {
    padding-bottom: 25px;
}

.registration-form .form-row {
    display: flex;
    gap: 15px;
    margin-bottom: 12px;
}

.registration-form .form-row .form-group {
    flex: 1;
    margin-bottom: 0;
}

.registration-form .form-group {
    margin-bottom: 12px;
}

.registration-form .form-group label {
    display: block;
    margin-bottom: 5px;
}

.registration-form .btn-register {
    margin-top: 20px;
}

/* Footer clearance */
.main-content::after {
    content: "";
    display: table;
    clear: both;
}

@media(max-width: 576px) {
    .video-container {
        max-width: 100%;
    }

    .registration-form .form-row {
        flex-direction: column;
        gap: 12px;
    }
}
