body {
    margin: 0;
    padding: 0;
    background: #f1f1f1;
    font-family: Arial, Helvetica, sans-serif;
    color: #333;
}

.master-color {
    color: #c00;
}

.page-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.content-box {
    background: #fff;
    padding: 30px 40px;
    border-radius: 16px;
    box-shadow: 0 0 15px rgba(0,0,0,0.15);
    width: 100%;
    max-width: 600px;
    text-align: left;
}

h1 {
    text-align: center;
    color: #c00;
    font-size: 1.6em;
    margin-bottom: 25px;
}

h2 {
    text-align: center;
    background-color: #F19511;
    border-radius: 7px;
    padding: 7px;
    color: #000;
    font-size: 1.3em;
    margin-bottom: 25px;
}

.noteBasPage {
    text-align: center;
    color: #333;
    font-size: 12px;
}

.form-group {
    margin-bottom: 15px;
}

label {
    display: block;
    font-weight: bold;
    margin-bottom: 6px;
}

input[type="text"],
input[type="email"] {
    width: 100%;
    padding: 8px 10px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 1em;
    box-sizing: border-box;
}

button {
    width: 100%;
    background: #c00;
    color: #fff;
    border: none;
    padding: 10px;
    font-size: 1em;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.2s;
}

button:hover {
    background: #a00;
}

.captcha-container {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 17px;
    font-weight: 700;
}

.captcha {
    background: #eee;
    padding: 6px 12px;
    border-radius: 8px;
    font-weight: bold;
    font-size: 1.1em;
    letter-spacing: 2px;
}

.result.success {
    background: #eaffea;
    border: 1px solid #0a0;
    color: #060;
    padding: 15px;
    border-radius: 10px;
    text-align: center;
}

.redirect-button {
    display: inline-block;
    background: #c00;
    color: #fff;
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.2s;
}

.redirect-button:hover {
    background: #a00;
}

.small-gray-button {
    display: inline-block;
    background-color: #f2f2f2;
    color: #060;
    font-size: 14px;
    padding: 4px 7px;
    border-radius: 6px;
    text-decoration: none;
    border: 1px solid #ccc;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.small-gray-button:hover {
    background-color: #e0e0e0;
    color: #000;
}


