/* Reset and base */
.registration-page * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

.registration-page {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #FEE7C6;
    padding: 50px 0;
}

/* Container */
.registration-page .container {
    max-width: 1100px;
    width: 100%;
    padding: 0 15px;
}

/* Form Box */
.registration-page .registration-form {
    background: #fff6eab3;
    padding: 35px;
    border-radius: 8px;
    box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px,
        rgba(60, 64, 67, 0.15) 0px 1px 3px 1px;
    margin-bottom: 24px;
    text-align: center;
}

.registration-page .registration-form h3 {
    margin-bottom: 24px;
    color: #be7200;
    font-size: 24px;
    font-weight: 600;
    text-align: start;
    padding-bottom: 6px;
    position: relative;
}

.registration-page .registration-form h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    height: 4px;
    width: 100%;
    background: linear-gradient(to left, #8D2C16, #FB9907);
    border-radius: 2px;
}

/* Heading underline */
.registration-page .heading_title {
    position: relative;
    display: inline-block;
    margin-bottom: 40px;
    padding-bottom: 5px;
    font-weight: 600;
    text-align: center;
    color: #be7200 !important;
}

.registration-page .heading_title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    height: 4px;
    width: 60%;
    background: linear-gradient(to left, #8D2C16, #FB9907);
    border-radius: 2px;
}

/* Form Grid */
.registration-page .form-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.registration-page .form-group {
    margin-bottom: 16px;
}

.registration-page .form-group span {
    color: red;
}

.registration-page .form-group label {
    display: block;
    margin-bottom: 8px;
    color: #333;
    font-size: 15px;
    font-weight: 500;
    text-align: start;
}

.registration-page .form-group input,
.registration-page .form-group select {
    width: 100%;
    height: 45px;
    padding: 10px 12px;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-size: 15px;
    background: #fff !important;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.select-wrapper {
    position: relative;
    display: inline-block;
    width: 100%;
}

.select-wrapper select {
    width: 100%;
    padding-right: 2.5rem;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-color: #fff;
    cursor: pointer;
    font-size: 1rem;
}

.select-wrapper::after {
    content: "\f078";
    /* Font Awesome chevron-down */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    pointer-events: none;
    font-size: 0.85rem;
    color: #555;
}

.registration-page .form-group input:focus,
.registration-page .form-group select:focus {
    outline: none;
    border-color: #ED8B09;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

/* Submit Button */
.registration-page .submit-btn {
    position: relative;
    overflow: hidden;
    padding: 15px 50px;
    border: none;
    background-color: #CF6D0D !important;
    color: white;
    font-weight: bold;
    cursor: pointer;
    z-index: 1;
    transition: color 0.4s ease;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px,
        rgba(0, 0, 0, 0.23) 0px 3px 6px;
    border-radius: 5px;
    margin-top: 20px;
    text-transform: uppercase;
}

.registration-page .submit-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    height: 100%;
    width: 100%;
    background-color: #e67a0e;
    z-index: -1;
    transition: left 0.4s ease;
}

.registration-page .submit-btn:hover::before {
    left: 0;
}

/* Optional column content */
.registration-page .column {
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    text-align: center;
}

.registration-page .column h3 {
    margin-bottom: 12px;
    color: #1a1a1a;
    font-size: 18px;
    font-weight: 600;
}

.registration-page .column p {
    color: #4b5563;
    font-size: 14px;
    line-height: 1.5;
}

.note {
    text-align: start;
}

.note ul {
    margin-left: 20px;
}

.registration-page .form-group textarea {
    width: 100%;
    height: 100px;
    padding: 10px 12px;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-size: 15px;
    font-family: inherit;
    background: #fff !important;
    transition: border-color 0.2s, box-shadow 0.2s;
    resize: vertical;
}

.registration-page .form-group textarea:focus {
    outline: none;
    border-color: #ED8B09;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

/* Responsive */
@media (max-width: 768px) {
    .registration-page .form-grid {
        grid-template-columns: 2fr;
    }

    .registration-page .submit-btn {
        grid-column: span 1;
    }
}

@media (max-width: 480px) {
    .registration-page .registration-form {
        padding: 16px;
    }

    .registration-page .form-group label {
        font-size: 13px;
    }

    .registration-page .form-group input,
    .registration-page .form-group select,
    .registration-page .submit-btn {
        font-size: 13px;
    }
}