/* =========================================
   FOGBOTTOM REGISTRATION PAGE
   ========================================= */

html,
body {
    margin: 0;
    padding: 0;
    width: 100%;
    min-height: 100%;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background-image: url("../images/bg.png");
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

/* Full-page positioning */

.registration-page {
    min-height: 100vh;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
    padding: 30px;
}

/* White registration box */

.registration-box {
    width: 100%;
    max-width: 380px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 12px;
    padding: 30px 32px;
    box-sizing: border-box;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.25);
}

/* Heading */

.registration-box h1 {
    margin: 0 0 20px 0;
    font-size: 22px;
    line-height: 1.3;
    color: #24415c;
}

/* Instructions */

.parent-instruction {
    margin: 0 0 22px 0;
    font-size: 15px;
    line-height: 1.5;
    color: #444;
}

/* Form */

.registration-box form {
    text-align: left;
}

.registration-box label {
    display: block;
    margin-bottom: 7px;
    font-size: 14px;
    font-weight: bold;
    color: #333;
}

.registration-box input[type="email"] {
    width: 100%;
    box-sizing: border-box;
    padding: 12px 13px;
    border: 1px solid #bbb;
    border-radius: 6px;
    font-size: 16px;
    margin-bottom: 16px;
}

.registration-box input[type="email"]:focus {
    outline: none;
    border-color: #557a52;
    box-shadow: 0 0 0 2px rgba(85, 122, 82, 0.15);
}

/* Button */

.registration-box button {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 6px;
    background: #557a52;
    color: white;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
}

.registration-box button:hover {
    background: #456642;
}

/* Small privacy text */

.privacy-note {
    margin: 18px 0 0 0;
    font-size: 11px;
    line-height: 1.4;
    color: #666;
}

/* Mobile */

@media (max-width: 600px) {

    .registration-page {
        padding: 20px;
        align-items: center;
    }

    .registration-box {
        max-width: 360px;
        padding: 25px 22px;
    }

    .registration-box h1 {
        font-size: 20px;
    }
}