﻿
.registration-container {
    max-width: 500px;
    width: 100%;
    padding: 30px;
    background: #fff;
    box-shadow: 0 0 12px rgba(0, 0, 0, 0.1);
    margin: 100px auto 30px;
    border-radius: 10px;
}

.registration-container img {
    display: block;
    margin: 0 auto 20px;
    width: 120px;
}

.registration-container h2 {
    text-align: center;
    color: #333;
}

.registration-container form {
    display: flex;
    flex-direction: column;
}

.registration-container label {
    margin-top: 15px;
    font-weight: 500;
    color: #333;
}

.registration-container input,
.registration-container textarea {
    padding: 10px;
    margin-top: 5px;
    border-radius: 6px;
    border: 1px solid #ccc;
    font-size: 14px;
}

.registration-container textarea {
    resize: vertical;
    min-height: 80px;
}

.checkbox-container {
    display: flex;
    align-items: center;
    margin-top: 15px;
}

    .checkbox-container input {
        margin-right: 10px;
    }

    .checkbox-container a {
        color: #d00194;
        text-decoration: underline;
        cursor: pointer;
    }

.submit-btn {
    background-color: #d00194;
    color: white;
    border: none;
    padding: 12px;
    border-radius: 6px;
    font-size: 16px;
    cursor: pointer;
    margin-top: 20px;
    transition: background 0.3s;
}

    .submit-btn:hover {
        background-color: #b8007f;
    }

.hidden {
    display: none;
}

.main {
    padding-top: 76px;
}

/* Modal Styles */
.terms-modal .modal-content {
    border-radius: 10px;
    border: none;
}

.terms-modal .modal-header {
    background: linear-gradient(135deg, #d00194, #b8007f);
    color: white;
    border-bottom: none;
    border-radius: 10px 10px 0 0;
}

.terms-modal .modal-body {
    max-height: 60vh;
    overflow-y: auto;
    padding: 20px;
}

.terms-modal .modal-footer {
    border-top: none;
    padding: 15px 20px;
}

.terms-list {
    list-style-type: decimal;
    padding-left: 20px;
}

    .terms-list li {
        margin-bottom: 15px;
        line-height: 1.5;
    }

.important-note {
    background-color: #fff3cd;
    border: 1px solid #ffeaa7;
    border-radius: 5px;
    padding: 15px;
    margin-bottom: 20px;
    font-weight: 500;
}

.contact-info-modal {
    background-color: #f8f9fa;
    border-radius: 5px;
    padding: 15px;
    margin-top: 20px;
    font-size: 14px;
}










.thanks-container {
    max-width: 500px;
    width: 100%;
    padding: 30px;
    background: #fff;
    box-shadow: 0 0 12px rgba(0, 0, 0, 0.1);
    margin: 100px auto 30px;
    border-radius: 10px;
    text-align: center;
}

    .thanks-container img {
        display: block;
        margin: 0 auto 20px;
        width: 120px;
    }

    .thanks-container h2 {
        color: #333;
        margin-bottom: 20px;
    }

    .thanks-container p {
        color: #666;
        font-size: 16px;
        margin-bottom: 30px;
    }

.payment-btn {
    background-color: #d00194;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 6px;
    font-size: 16px;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: background 0.3s;
}

    .payment-btn:hover {
        background-color: #b8007f;
    }

.main {
    padding-top: 76px;
    /* Adjust for fixed navbar */
}

/* Registration Process Styles */
.registration-process {
    max-width: 800px;
    margin: 50px auto;
    padding: 40px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}

    .registration-process h2 {
        color: #d00194;
        margin-bottom: 20px;
        text-align: center;
        font-weight: 700;
    }

    .registration-process .intro {
        font-size: 16px;
        margin-bottom: 30px;
        color: #555;
    }

.step {
    margin-bottom: 25px;
    padding-left: 20px;
    border-left: 3px solid #d00194;
}

.step-number {
    display: inline-block;
    background-color: #d00194;
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    text-align: center;
    line-height: 30px;
    margin-right: 10px;
    font-weight: bold;
}

.step-content {
    display: inline-block;
    width: calc(100% - 40px);
    vertical-align: top;
}

.contact-info {
    padding: 20px;
    border-radius: 8px;
    margin-top: 30px;
}

    .contact-info h4 {
        color: #d00194;
        margin-bottom: 15px;
    }

.policies {
    margin-top: 20px;
    text-align: center;
    font-size: 14px;
    color: #777;
}

    .policies a {
        color: #d00194;
        text-decoration: none;
    }

        .policies a:hover {
            text-decoration: underline;
        }
