/* mil6print-signup/assets/css/signup.css */

/* Container */
.mil6print-signup-container {
    max-width: 720px;
    margin: 40px auto;
    padding: 40px 45px;
    background: #fff;
    box-shadow: 0 5px 30px rgba(0,0,0,0.15);
    border-radius: 6px;
    font-family: 'Times New Roman', Times, serif;
    color: #000;
    line-height: 1.5;
    position: relative;
    border: 1px solid #e0e0e0;
}

/* Gold emblem */
.mps-emblem {
    width: 45px;
    height: 45px;
    background-color: #FFD700;
    border-radius: 50%;
    position: absolute;
    top: -22px;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

/* Logo Container */
.mps-logo-container {
    text-align: center;
    margin-bottom: 20px;
}

/* Logo Image */
.mps-logo {
    max-width: 200px;
    height: auto;
    display: block;
    margin: 0 auto;
}

/* Main heading */
.mps-main-heading {
    font-size: 18px;
    font-weight: 900;
    text-align: center;
    margin: 10px 0 20px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* Operation title */
.mps-operation-title {
    font-size: 16px;
    font-weight: 900;
    margin: 25px 0 20px;
    text-align: left;
}

/* Paragraphs */
.mil6print-signup-container p {
    font-size: 14px;
    margin: 14px 0;
    line-height: 1.5;
}

/* Sign up section */
.mps-sign-up-section {
    margin: 25px 0;
}

.mps-sign-up-section h4 {
    font-size: 14px;
    font-weight: 900;
    margin: 0 0 10px;
    text-transform: uppercase;
}

/* Bullets */
.mps-bullets {
    margin: 10px 0;
    padding-left: 20px;
}

.mps-bullets li {
    font-size: 14px;
    margin-bottom: 6px;
    line-height: 1.4;
}

/* Branch highlight */
.mps-branch-highlight {
    font-weight: 700;
}

/* BE FIRST heading */
.mps-be-first {
    font-size: 14px;
    font-weight: 900;
    margin: 25px 0 15px;
    text-transform: uppercase;
}

/* Form */
.mps-form {
    margin: 20px 0;
}

/* Numbered steps */
.mps-numbered-steps {
    list-style-type: decimal;
    padding-left: 25px;
    margin: 20px 0;
}

.mps-step {
    margin-bottom: 15px;
    position: relative;
}

.mps-step-label {
    font-size: 14px;
    font-weight: normal;
    margin-bottom: 8px;
}

.mps-step-fields {
    margin: 10px 0 15px;
}

/* Email and branch fields */
#mps_email {
    width: 100%;
    padding: 12px;
    font-size: 14px;
    border: 1px solid #ccc;
    margin-bottom: 20px; /* Increased margin between email and radio buttons */
    font-family: Arial, sans-serif;
    border-radius: 4px;
}

#mps_email:focus {
    border-color: #FFD700;
    outline: none;
    box-shadow: 0 0 3px rgba(255, 215, 0, 0.5);
}

/* Usage section styling */
.mps-usage {
    margin: 20px 0;
    padding: 15px;
    background-color: #f7f7f7;
    border-radius: 6px;
    border: 1px solid #e0e0e0;
}

.mps-usage-heading {
    font-weight: 600;
    margin-bottom: 12px;
    font-size: 14px;
}

.mps-usage-options {
    display: flex;
    flex-wrap: wrap;
    gap: 20px; /* Gap between radio options */
}

.mps-radio-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    padding: 5px 0;
    margin-right: 20px;
}

.mps-radio-label input[type="radio"] {
    margin-right: 8px;
}

.mps-radio-label span {
    font-size: 14px;
}

/* Hashtags */
.mps-hashtags {
    background-color: #f7f7f7;
    padding: 12px;
    border-radius: 4px;
    border: 1px solid #eaeaea;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.mps-hashtags span {
    display: inline-block;
    background-color: white;
    border: 1px solid #e0e0e0;
    padding: 5px 8px;
    border-radius: 3px;
    font-family: monospace;
    font-size: 13px;
}

/* Submit container */
.mps-submit-container {
    margin: 25px 0 20px;
    text-align: center;
}

/* Submit button */
.mil6print-signup-button {
    background-color: #FFD700;
    color: #000;
    font-weight: 700;
    padding: 12px 35px;
    border: none;
    border-radius: 25px;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    box-shadow: 0 4px 8px rgba(0,0,0,0.12);
    letter-spacing: 1px;
}

.mil6print-signup-button:hover {
    background-color: #f8cc00;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}

/* Message display */
.mps-message {
    margin: 15px 0;
    padding: 10px;
    text-align: center;
    border-radius: 4px;
    font-weight: 600;
}

.mps-message.success {
    background-color: #e6f4ea;
    color: #155724;
}

.mps-message.error {
    background-color: #fae3e5;
    color: #721c24;
}

/* Footer text styles */
.mps-service-respect {
    margin-top: 30px;
}

.mps-next-chapter {
    margin: 15px 0;
}

.mps-mission-ready {
    font-weight: 700;
    margin: 20px 0 25px;
}

.mps-thank-you {
    font-style: italic;
    margin-bottom: 10px;
}

.mps-signature {
    font-style: italic;
    color: #555;
    margin-top: 5px;
}

/* Thank you message after submission */
.mps-thank-you-message {
    text-align: center;
    background-color: #f7f7f7;
    padding: 30px;
    border-radius: 6px;
    margin: 20px 0;
    border: 1px solid #eaeaea;
}

.mps-thank-you-message h3 {
    color: #000;
    margin-bottom: 15px;
    font-size: 20px;
}

.mps-thank-you-checkmark {
    width: 60px;
    height: 60px;
    background-color: #FFD700;
    margin: 0 auto 20px;
    border-radius: 50%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mps-thank-you-checkmark:after {
    content: "✓";
    font-size: 35px;
    color: #000;
    font-weight: bold;
}

/* Mobile Responsive */
@media (max-width: 767px) {
    .mil6print-signup-container {
        padding: 30px 20px;
        margin: 30px 15px;
    }
    
    .mps-logo {
        max-width: 160px;
    }
    
    .mps-usage-options {
        flex-direction: column;
        gap: 10px;
    }
    
    .mps-radio-label {
        margin-right: 0;
    }
}

@media (max-width: 480px) {
    .mps-logo {
        max-width: 140px;
    }
}