.register-main {
    margin: 0 auto;
    padding: 0;
}

/* Register Hero Section */
.register-hero {
    background: linear-gradient(135deg, #3498db, #2c3e50);
    color: white;
    text-align: center;
    padding: 4rem 2rem;
}

.register-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.register-hero p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* Registration Benefits */
.registration-benefits {
    padding: 4rem 2rem;
    background-color: #f8f9fa;
    text-align: center;
}

.registration-benefits h2 {
    color: #2c3e50;
    margin-bottom: 3rem;
}

.benefit-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1360px;
    margin: 0 auto;
}

.benefit-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    transition: transform 0.3s;
    max-width: 330px;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 20px rgba(0,0,0,0.12);
}

.benefit-card .icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.benefit-card h3 {
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

/* Registration Flow */
.registration-flow {
    padding: 4rem 2rem;
    background-color: white;
    text-align: center;
}

.registration-flow h2 {
    color: #2c3e50;
    margin-bottom: 3rem;
}

.flow-steps {
    display: flex;
    justify-content: space-around;
    align-items: flex-start;
    max-width: 1250px;
    margin: 0 auto;
    flex-wrap: wrap;
    gap: 2rem;
}

.flow-step {
    flex: 1;
    min-width: 150px;
    text-align: center;
}

.step-number {
    width: 60px;
    height: 60px;
    background: #3498db;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 1rem;
}

.flow-step h3 {
    color: #2c3e50;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.flow-step p {
    color: #7f8c8d;
    font-size: 0.9rem;
}

.register-section {
    background-color: #f8f9fa;
    padding: 4rem 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.register-section h2 {
    text-align: center;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.form-intro {
    text-align: center;
    color: #7f8c8d;
    margin-bottom: 2rem;
}

.required-note {
    color: #e74c3c;
    font-weight: bold;
}

.register-form {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 0.5rem;
    color: #34495e;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    width: 100%;
}

.form-group textarea {
    resize: vertical;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3498db;
    box-shadow: 0 0 0 2px rgba(52,152,219,0.2);
}

.btn.primary {
    width: 100%;
    padding: 1rem;
    font-size: 1.1rem;
    margin-top: 1rem;
}

/* Email Registration Styles */
.email-registration {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.email-registration h3 {
    color: #2c3e50;
    margin-bottom: 1.5rem;
}

.email-info-box {
    background-color: #e8f4fd;
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    text-align: center;
}

.email-address {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.email-address a {
    color: #3498db;
    font-weight: bold;
}

.email-subject {
    color: #495057;
}

.required-info {
    margin-bottom: 2rem;
}

.required-info h4 {
    color: #2c3e50;
    margin-bottom: 1rem;
}

.info-list {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 0.5rem;
}

.info-list li {
    padding: 0.5rem;
    background-color: #f8f9fa;
    border-radius: 5px;
    color: #495057;
}

.info-list li::before {
    content: "✓ ";
    color: #28a745;
    font-weight: bold;
}

.email-template {
    margin-bottom: 2rem;
}

.email-template h4 {
    color: #2c3e50;
    margin-bottom: 1rem;
}

.template-box {
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid #dee2e6;
    font-family: monospace;
    white-space: pre-line;
    color: #212529;
    line-height: 1.8;
    max-height: 400px;
    overflow-y: auto;
}

.action-buttons {
    text-align: center;
    margin-top: 2rem;
}

.action-buttons .btn {
    display: inline-block;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    text-decoration: none;
    background-color: #3498db;
    color: white;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.action-buttons .btn:hover {
    background-color: #2c7fb8;
}

.additional-info {
    background-color: #fff3cd;
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid #ffeaa7;
    margin-top: 2rem;
}

.additional-info h4 {
    color: #856404;
    margin-bottom: 1rem;
}

.additional-info ul {
    margin: 0;
    padding-left: 1.5rem;
    color: #856404;
}

.additional-info ul li {
    margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
    .register-main {
        padding: 1rem;
    }

    .register-section {
        padding: 1.5rem;
    }
}