* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #f4f6f9;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
}

.container {
    background: #ffffff;
    padding: 2rem 2.5rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    max-width: 520px;
    width: 100%;
}

h1 {
    color: #1e3a8a;
    margin-bottom: 0.25rem;
    font-size: 1.8rem;
}

p {
    color: #555;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.form-group {
    margin-bottom: 1.2rem;
}

.form-row {
    display: flex;
    gap: 1rem;
}

.form-row .form-group {
    flex: 1;
}

label {
    display: block;
    margin-bottom: 0.3rem;
    font-weight: 600;
    color: #333;
}

input, select, textarea {
    width: 100%;
    padding: 0.7rem 0.9rem;
    border: 1px solid #ccd6e0;
    border-radius: 6px;
    font-size: 1rem;
    transition: border-color 0.2s;
}

input:focus, select:focus, textarea:focus {
    outline: none;
    border-color: #1e3a8a;
    box-shadow: 0 0 0 3px rgba(30, 58, 138, 0.1);
}

.cf-turnstile {
    margin: 1.2rem 0;
}

button {
    width: 100%;
    padding: 0.85rem;
    background: #1e3a8a;
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.2s;
    margin-top: 0.5rem;
}

button:hover:not(:disabled) {
    background: #152e6e;
}

button:disabled {
    background: #94a3b8;
    cursor: not-allowed;
}

.availability-msg {
    font-size: 0.9rem;
    margin-top: 0.3rem;
    min-height: 1.2rem;
}

.availability-msg.error {
    color: #c00;
}

.availability-msg.success {
    color: #166534;
}

.success-msg {
    text-align: center;
    margin-top: 1.5rem;
    font-weight: 600;
    color: #166534;
    background: #dcfce7;
    padding: 0.75rem;
    border-radius: 6px;
}
.logo {
    display: block;
    margin: 0 auto 0.5rem;
    width: 300px;
    max-width: 100%;
    height: auto !important;
}
.icon-img {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}