html {
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    width: 100%;
    box-sizing: border-box;
}

* {
    box-sizing: border-box;
}

.sr-landing-container {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

.sr-header {
    padding: 14px 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    box-sizing: border-box;
}

.sr-header-desktop {
    padding: 14px 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-sizing: border-box;
    width: 100%;
}

.sr-header-logo {
    width: 44px;
    height: 48px;
    object-fit: contain;
}

.sr-mobile-menu {
    color: black;
    font-size: 18px;
    cursor: pointer;
}

.sr-language-selector {
    display: inline-flex;
}

.sr-language-selector .form-select {
    padding: 12px 16px;
    border-radius: 12px;
    border: 1px solid #DDDDDD;
    font-size: 16px;
    cursor: pointer;
    background-color: white;
    min-width: 100px;
}

.sr-language-selector .form-select:hover {
    border-color: #BB4A92;
}

.sr-language-selector .form-select:focus {
    border-color: #BB4A92;
    box-shadow: none;
}

.sr-video-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.sr-video-modal-overlay.show {
    opacity: 1;
    visibility: visible;
}

.sr-video-modal-content {
    position: relative;
    width: 90%;
    max-width: 1200px;
    aspect-ratio: 16 / 9;
    background: black;
    border-radius: 12px;
    overflow: hidden;
}

.sr-video-modal-close {
    position: absolute;
    top: -40px;
    right: 0;
    background: transparent;
    border: none;
    color: white;
    font-size: 32px;
    cursor: pointer;
    z-index: 10000;
    padding: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease;
}

.sr-video-modal-close:hover {
    transform: scale(1.1);
}

.sr-video-modal-body {
    width: 100%;
    height: 100%;
}

.sr-video-modal-body iframe {
    width: 100%;
    height: 100%;
}

.sr-breadcrumb {
    background: #FAF8F7;
    border-bottom: 1px solid #DDDDDD;
    padding: 8px 16px;
    position: relative;
    width: 100%;
    box-sizing: border-box;
}

.sr-breadcrumb-desktop {
    padding: 8px 16px;
    position: relative;
    width: 100%;
    box-sizing: border-box;
}

.sr-breadcrumb-content {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 12px;
    max-width: 1140px;
    margin: 0 auto;
}

.sr-breadcrumb-content-desktop {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 12px;
    margin: 0 auto;
}

.sr-breadcrumb-search {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #2A2A2A;
    font-weight: 700;
    font-size: 16px;
    line-height: 24px;
    cursor: default;
    position: relative;
}

.sr-step-badge {
    background: linear-gradient(90deg, #514C9A 0%, #AD4091 100%);
    color: white;
    padding: 5px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 700;
    line-height: 16px;
    letter-spacing: 0.5px;
}

.sr-nav-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 280px;
    padding: 16px 25px;
    background: white;
    box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.05);
    border-bottom-right-radius: 4px;
    border-bottom-left-radius: 4px;
    border-left: 1px solid #DDDDDD;
    border-right: 1px solid #DDDDDD;
    border-bottom: 1px solid #DDDDDD;
    z-index: 1000;
}

.sr-nav-dropdown.show {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.sr-nav-item-container {
    display: flex;
    align-items: center;
    gap: 12px;
    min-height: 28px;
}

.sr-nav-label {
    font-size: 16px;
    font-family: Roboto;
    font-weight: 400;
    line-height: 24px;
    color: black;
}

.sr-nav-label.disabled {
    color: #929292;
}

.sr-nav-number {
    width: 28px;
    height: 28px;
    border-radius: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-family: Roboto;
    font-weight: 700;
    line-height: 16px;
    flex-shrink: 0;
}

.sr-nav-number.active {
    background: linear-gradient(90deg, #514C9A 0%, #AD4091 100%);
    color: white;
}

.sr-nav-number.completed {
    background: black;
    color: white;
}

.sr-nav-number.disabled {
    background: white;
    border: 1px solid #BBBBBB;
    color: #929292;
}

.sr-nav-line {
    width: 1px;
    height: 20px;
    background: #DDDDDD;
    margin-left: 13.5px;
}

.sr-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 40px 15px 20px;
    gap: 24px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow-x: hidden;
}

.sr-content-desktop {
    flex: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 40px 15px 20px;
    gap: 24px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow-x: hidden;
}

.sr-content-student {
    gap: 0px;
}

.sr-content-student .sr-guardian-intro {
    padding-bottom: 0;
    margin-bottom: 40px;
}

.sr-content-student .sr-guardian-form-container {
    padding-top: 0;
}

.sr-welcome-section {
    width: 100%;
    max-width: 345px;
    text-align: left;
    padding: 0 15px;
}

.sr-welcome-section-desktop {
    width: 100%;
    text-align: left;
    padding: 0 15px;
}

.sr-welcome-title {
    color: #0C0C20;
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 16px;
    line-height: 1.2;
}

.sr-welcome-text {
    color: #2A2A2A;
    font-size: 18px;
    line-height: 28px;
    font-weight: 400;
    max-width: 100%;
    margin: 0;
}

.sr-video-section {
    width: 100%;
    max-width: 345px;
    background: #FAF8F7;
    border-radius: 12px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.sr-video-section-desktop {
    width: 100%;
    border-radius: 12px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.sr-video-placeholder {
    width: 100%;
    max-width: 309px;
    height: 179px;
    border-radius: 12px;
    overflow: hidden;
    background: #DDDDDD;
    cursor: pointer;
}

.sr-video-placeholder-desktop {
    width: 75%;
    height: 300px;
    border-radius: 12px;
    overflow: hidden;
    background: #DDDDDD;
    cursor: pointer;
}

.sr-video-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.sr-video-placeholder:hover img {
    transform: scale(1.05);
}

.sr-cta-button {
    background: #BB4A92;
    color: white;
    padding: 14px 40px;
    border-radius: 40px;
    font-size: 18px;
    font-weight: 700;
    line-height: 28px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s;
}

.sr-cta-button:hover {
    background: #AD4091;
    color: white;
    transform: translateY(-2px);
}

.sr-video-section {
    width: 100%;
    max-width: 345px;
    padding: 24px 18px;
}

.sr-video-section form {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.sr-field-group {
    display: flex;
    flex-direction: column;
    gap: 0px;
    margin-bottom: 24px;
    align-items: flex-start;
    align-self: flex-start;
}

.sr-field-label-row {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 4px;
}

.sr-field-asterisk {
    color: #FF0000;
    font-size: 12px;
    font-family: Roboto;
    font-weight: 400;
    line-height: 16px;
}

.sr-field-label {
    flex: 1 1 0;
    font-size: 14px;
    font-weight: 500;
    line-height: 16px;
    color: black;
}

.sr-field-label .red,
.red {
    color: #FF0000;
    font-size: 12px;
    font-weight: 400;
    line-height: 16px;
}

.sr-video-section .form-control,
.sr-video-section .form-select {
    width: 309px;
    max-width: 309px;
    min-width: 309px;
    padding: 12px;
    border-radius: 12px;
    border: 1px solid #DDDDDD;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    height: auto;
    box-sizing: border-box;
}

.sr-video-section select.form-select {
    width: 309px;
    max-width: 309px;
    min-width: 309px;
    box-sizing: border-box;
}

.sr-video-section .form-control:focus,
.sr-video-section .form-select:focus {
    border-color: #DDDDDD;
    box-shadow: none;
}

.sr-video-section .btn-primary {
    background: #BB4A92;
    color: white;
    border: none;
    padding: 14px 40px;
    border-radius: 40px;
    font-size: 18px;
    font-weight: 700;
    line-height: 28px;
    margin-top: 0;
}

.sr-video-section-desktop .btn-primary {
    background: #BB4A92;
    color: white;
    border: none;
    padding: 14px 40px;
    border-radius: 40px;
    font-size: 18px;
    font-weight: 700;
    line-height: 28px;
    margin-top: 0;
}

.sr-video-section .btn-primary:hover:not(:disabled) {
    background: #AD4091;
    color: white;
}

.sr-video-section-desktop .btn-primary:hover:not(:disabled) {
    background: #AD4091;
    color: white;
}

.sr-video-section .btn-primary:disabled {
    background: #DDDDDD;
    color: #929292;
}

.sr-video-section-desktop .btn-primary:disabled {
    background: #DDDDDD;
    color: #929292;
}

.sr-confirmation-section {
    width: 100%;
    max-width: 345px;
    padding: 24px 18px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.sr-confirmation-section-desktop {
    width: 100%;
    padding: 24px 18px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.sr-confirmation-title {
    width: 309px;
    color: #0C0C20;
    font-size: 30px;
    font-weight: 700;
    line-height: 36px;
    margin: 0;
}

.sr-confirmation-details {
    width: 309px;
    color: black;
    font-size: 18px;
    line-height: 28px;
}

.sr-confirmation-name {
    font-weight: 700;
}

.sr-confirmation-id,
.sr-confirmation-class {
    font-weight: 400;
}

.sr-confirmation-secondary {
    width: 327px;
    text-align: center;
    color: #2A2A2A;
    font-size: 18px;
    line-height: 28px;
}

.sr-confirmation-secondary-title {
    font-weight: 700;
}

.sr-confirmation-secondary-link {
    font-weight: 400;
    text-decoration: underline;
    color: inherit;
}

.sr-confirmation-section .btn-primary {
    background: #BB4A92;
    color: white;
    border: none;
    padding: 14px 40px;
    border-radius: 40px;
    font-size: 18px;
    font-weight: 700;
    line-height: 28px;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.sr-confirmation-section-desktop .btn-primary {
    background: #BB4A92;
    color: white;
    border: none;
    padding: 14px 40px;
    border-radius: 40px;
    font-size: 18px;
    font-weight: 700;
    line-height: 28px;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.sr-confirmation-section .btn-primary:hover {
    background: #AD4091;
    color: white;
    text-decoration: none;
}

.sr-confirmation-section-desktop .btn-primary:hover {
    background: #AD4091;
    color: white;
    text-decoration: none;
}

.sr-create-profile-link {
    width: 100%;
    max-width: 327px;
    text-align: center;
    margin-top: 20px;
}

.sr-create-profile-link a {
    text-decoration: none;
    color: #2A2A2A;
    display: block;
}

.sr-create-profile-link a:hover {
    color: #2A2A2A;
}

.sr-profile-text-bold {
    color: #2A2A2A;
    font-size: 18px;
    font-family: Roboto;
    font-weight: 700;
    line-height: 28px;
}

.sr-profile-text-underline {
    color: #2A2A2A;
    font-size: 18px;
    font-family: Roboto;
    font-weight: 400;
    text-decoration: underline;
    line-height: 28px;
}

.sr-guardian-intro {
    width: 100%;
    max-width: 345px;
    padding: 0 18px 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.sr-guardian-title {
    color: #0C0C20;
    font-size: 30px;
    font-weight: 700;
    line-height: 36px;
    margin: 0;
}

.sr-guardian-description {
    color: black;
    font-size: 18px;
    font-weight: 400;
    line-height: 28px;
    margin: 0;
}

.sr-guardian-form-container {
    width: 345px;
    padding: 24px 18px;
    background: #FAF8F7;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    gap: 26px;
}

.sr-guardian-section {
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding-bottom: 24px;
}

.sr-guardian-section:not(:first-child) {
    padding-top: 24px;
}

#guardianSectionsContainer {
    display: flex;
    flex-direction: column;
}

.sr-guardian-section-title {
    color: black;
    font-size: 18px;
    font-weight: 700;
    line-height: 28px;
}

.sr-guardian-form-container .sr-field-group {
    display: flex;
    flex-direction: column;
    gap: 2px;
    margin-bottom: 3px;
}

.sr-guardian-form-container .sr-field-label {
    font-size: 14px;
    font-weight: 500;
    line-height: 16px;
    color: black;
}

.sr-guardian-form-container .form-control {
    width: 309px;
    padding: 12px;
    border-radius: 12px;
    border: 1px solid #DDDDDD;
    background: white;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
}

.sr-add-parent-link {
    padding-bottom: 16px;
    text-align: right;
}

.sr-add-parent-link a {
    color: #BB4A92;
    font-size: 14px;
    font-weight: 700;
    line-height: 21px;
    text-decoration: none;
}

.sr-remove-parent-link {
    padding-bottom: 16px;
    text-align: right;
}

.sr-remove-parent-link a {
    color: #BB4A92;
    font-size: 14px;
    font-weight: 700;
    line-height: 21px;
    text-decoration: none;
    cursor: pointer;
}

.sr-remove-parent-link a:hover {
    text-decoration: underline;
}

.sr-guardian-checkboxes {
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: center;
}

.sr-checkbox-group {
    width: 316px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.sr-checkbox-group input[type="checkbox"] {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
    cursor: pointer;
    accent-color: #0C0C20;
    border-radius: 4px;
}

.sr-checkbox-group label {
    color: black;
    font-size: 14px;
    font-weight: 400;
    line-height: 21px;
    margin: 0;
}

.sr-policy-text {
    width: 309px;
    color: black;
    font-size: 14px;
    font-weight: 400;
    line-height: 21px;
}

.sr-guardian-form-container .btn-primary {
    background: #DDDDDD;
    color: #929292;
    border: none;
    padding: 14px 40px;
    border-radius: 40px;
    font-size: 18px;
    font-weight: 700;
    line-height: 28px;
    align-self: center;
    display: block;
    margin: 0 auto;
}

.sr-guardian-form-container .btn-primary:not(:disabled) {
    background: #BB4A92;
    color: white;
}

.sr-guardian-form-container .btn-primary:not(:disabled):hover {
    background: #AD4091;
    color: white;
}

.sr-finalize-intro {
    width: 100%;
    max-width: 345px;
    padding: 24px 18px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.sr-finalize-title {
    color: #0C0C20;
    font-size: 30px;
    font-weight: 700;
    line-height: 36px;
    margin: 0;
}

.sr-finalize-description {
    color: black;
    font-size: 18px;
    font-weight: 400;
    line-height: 28px;
}

.sr-finalize-description strong {
    font-weight: 700;
}

.sr-finalize-button {
    background: #BB4A92;
    color: white !important;
    border: none;
    padding: 14px 40px;
    border-radius: 40px;
    font-size: 18px;
    font-weight: 700;
    line-height: 28px;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.sr-finalize-button:hover {
    background: #A03D7E;
    color: white !important;
    text-decoration: none;
}

.sr-finalize-lookbook {
    width: 345px;
    padding: 24px 18px;
    background: #FAF8F7;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.sr-lookbook-text {
    width: 309px;
    color: black;
    font-size: 18px;
    line-height: 28px;
}

.sr-lookbook-text strong {
    font-weight: 700;
}

.sr-lookbook-text span {
    font-weight: 400;
}

.sr-lookbook-image {
    width: 309px;
    height: 172px;
    border-radius: 12px;
    object-fit: cover;
}

.sr-finalize-lookbook .btn-primary {
    background: #BB4A92;
    color: white !important;
    border: none;
    padding: 14px 40px;
    border-radius: 40px;
    font-size: 18px;
    font-weight: 700;
    line-height: 28px;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.sr-finalize-lookbook .btn-primary:hover {
    background: #AD4091;
    color: white !important;
    text-decoration: none;
}

.sr-footer {
    background: black;
    color: white;
    padding: 40px 0;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow-x: hidden;
}

.sr-footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
    padding: 0 24px;
}

.sr-footer-content-desktop {
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
    padding: 0 24px;
}

.sr-footer-logo {
    width: 212.88px;
    height: 63px;
    object-fit: contain;
}

.sr-footer-logo-desktop {
    width: 212.88px;
    height: 126px;
    object-fit: contain;
}

.sr-footer-links {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

sr-footer-links-desktop {
    display: flex;
    flex-direction: row;
    gap: 16px;
}

.sr-footer-link {
    color: white;
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    text-decoration: none;
}

.sr-footer-link-desktop {
    color: white;
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    text-decoration: none;
    padding: 10px;
}

.sr-footer-link:hover {
    color: #BB4A92;
}

.sr-footer-divider {
    border-top: 1px solid #7F7F7F;
}

.sr-footer-bottom {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 24px;
}

.sr-footer-social {
    display: flex;
    gap: 12px;
}

.sr-footer-social a {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
}

.sr-footer-social a:hover {
    color: #BB4A92;
}

.sr-footer-social i {
    font-size: 18px;
    color: inherit;
    cursor: pointer;
}

.sr-footer-copyright {
    color: #BBBBBB;
    font-size: 14px;
    line-height: 21px;
}

.sr-footer-copyright a {
    color: #BBBBBB;
    text-decoration: underline;
}

.sr-footer-copyright a:hover {
    color: white;
}

@media (min-width: 768px) and (max-width: 1023px) {
    .sr-content {
        padding: 60px 40px;
        gap: 50px;
    }

    .sr-welcome-title {
        font-size: 44px;
    }

    .sr-welcome-text {
        font-size: 18px;
        line-height: 28px;
    }

    .sr-video-placeholder {
        height: 380px;
    }

    .sr-video-section {
        padding: 40px;
    }
}

@media (max-width: 767px) {
    .sr-breadcrumb {
        padding: 8px 15px;
    }

    .sr-breadcrumb-search {
        font-size: 16px;
    }

    .sr-step-badge {
        padding: 5px 8px;
        font-size: 12px;
    }

    .sr-content {
        padding: 40px 15px;
        gap: 24px;
    }

    .sr-content-student {
        gap: 0px;
    }

    .sr-content-student .sr-guardian-intro {
        padding-bottom: 0;
        margin-bottom: 40px;
    }

    .sr-welcome-section {
        max-width: 345px;
        text-align: left;
        padding: 0 15px;
    }

    .sr-welcome-title {
        font-size: 30px;
    }

    .sr-welcome-text {
        font-size: 18px;
        line-height: 28px;
    }

    .sr-video-section {
        max-width: 345px;
        padding: 24px;
        gap: 24px;
    }

    .sr-video-placeholder {
        max-width: 309px;
        height: 179px;
    }

    .sr-cta-button {
        padding: 14px 40px;
        font-size: 18px;
        text-align: center;
    }

    .sr-video-modal-overlay {
        padding: 20px;
    }

    .sr-video-modal-content {
        width: 95%;
        max-width: 100%;
    }

    .sr-video-modal-close {
        top: -35px;
        right: 0;
        font-size: 28px;
        width: 35px;
        height: 35px;
    }

    .sr-footer {
        padding: 40px 24px;
    }

    .sr-footer-links {
        flex-direction: column;
        gap: 16px;
    }

    .sr-footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }

    .sr-footer-logo {
        width: 212.88px;
        height: 63px;
    }
}

.sr-guardian-form-container .dropdown {
    position: relative;
}

.sr-guardian-form-container .dropdown-menu {
    display: none;
    position: absolute;
    z-index: 1000;
    width: 309px;
    margin-top: 4px;
    padding: 0;
    background-color: white;
    border: 1px solid #DDDDDD;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    max-height: 300px;
    overflow-y: auto;
}

.sr-guardian-form-container .dropdown-ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sr-guardian-form-container .dropdown-item {
    padding: 12px 16px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    color: #2A2A2A;
    background-color: white;
    border-bottom: 1px solid #F5F5F5;
}

.sr-guardian-form-container .dropdown-item:last-child {
    border-bottom: none;
}

.sr-guardian-form-container .dropdown-item:hover {
    background-color: #F9F9F9;
}

.sr-guardian-form-container .dropdown-item:first-child {
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
}

.sr-guardian-form-container .dropdown-item:last-child {
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
}

.sr-student-intro {
    width: 100%;
    max-width: 345px;
    padding: 24px 18px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.sr-student-title {
    color: #0C0C20;
    font-size: 30px;
    font-weight: 700;
    line-height: 36px;
    margin: 0;
}

.sr-student-description {
    color: black;
    font-size: 18px;
    font-weight: 400;
    line-height: 28px;
    margin: 0;
}

.sr-student-form-container {
    width: 345px;
    padding: 24px 18px;
    background: #FAF8F7;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    gap: 26px;
}

.sr-student-section {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.sr-student-section-title {
    color: black;
    font-size: 18px;
    font-weight: 700;
    line-height: 28px;
}

.sr-student-form-container .sr-field-group {
    display: flex;
    flex-direction: column;
    gap: 2px;
    margin-bottom: 3px;
}

.sr-student-form-container .sr-field-label {
    font-size: 14px;
    font-weight: 500;
    line-height: 16px;
    color: black;
}

.sr-student-form-container .form-control {
    width: 309px;
    padding: 12px;
    border-radius: 12px;
    border: 1px solid #DDDDDD;
    background: white;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
}

.sr-guardian-form-container .sr-readonly-field {
    background: #EEEEEE;
    font-style: italic;
    cursor: not-allowed;
}

.sr-error-message {
    color: red;
    font-style: italic;
    font-size: 14px;
    margin-top: 5px;
    display: block;
}

.sr-student-form-container select.form-control {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 24px;
    padding-right: 40px;
}

.sr-checkbox-container {
    display: flex;
    align-items: center;
    gap: 4px;
}

.sr-checkbox-container input[type="checkbox"] {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
    cursor: pointer;
    accent-color: #0C0C20;
    border-radius: 4px;
}

.sr-checkbox-container label {
    color: black;
    font-size: 14px;
    font-weight: 400;
    line-height: 21px;
    margin: 0;
    cursor: pointer;
}

.sr-student-policy {
    width: 309px;
    color: black;
    font-size: 14px;
    font-weight: 400;
    line-height: 21px;
}

.sr-student-form-container .btn-primary {
    background: #BB4A92;
    color: white;
    border: none;
    padding: 14px 40px;
    border-radius: 40px;
    font-size: 18px;
    font-weight: 700;
    line-height: 28px;
    align-self: center;
    display: block;
    margin: 0 auto;
}

.sr-student-form-container .btn-primary:hover {
    background: #AD4091;
    color: white;
}
