/* Reset default styles and set up the page */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Caladea', serif;
    background-color: #0a0a0a;
    color: #ffffff;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.container {
    text-align: center;
    padding: 40px;
    max-width: 600px;
}

.logo {
    max-width: 200px;
    margin-bottom: 30px;
}

h1 {
    font-size: 2.5em;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #a8b8d8 0%, #7b8db5 25%, #5a6d94 50%, #8fa4c7 75%, #b4c5e0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.signup-form {
    margin-top: 50px;
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 10px;
}

.signup-form h2 {
    margin-bottom: 20px;
    background: linear-gradient(135deg, #a8b8d8 0%, #8fa4c7 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.signup-form input {
    width: 100%;
    padding: 15px;
    margin-bottom: 15px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
}

/* Helper text for phone field */
.phone-helper {
    font-size: 14px;
    color: #8fa4c7;
    margin-top: -10px;
    margin-bottom: 15px;
    text-align: left;
}

.signup-form button {
    width: 100%;
    padding: 15px;
    background: linear-gradient(135deg, #7b8db5 0%, #a8b8d8 50%, #8fa4c7 100%);
    color: #0a0a0a;
    border: none;
    border-radius: 5px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.signup-form button:hover {
    transform: translateY(-2px);
    background: linear-gradient(135deg, #8fa4c7 0%, #b4c5e0 50%, #a8b8d8 100%);
    box-shadow: 0 5px 15px rgba(139, 157, 181, 0.4);
}

/* Button disabled state while submitting */
.signup-form button:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

/* Success/Error message styling */
.message {
    margin-top: 20px;
    padding: 10px;
    border-radius: 5px;
    font-size: 16px;
    display: none; /* Hidden by default */
}

.message.success {
    background-color: rgba(76, 175, 80, 0.2);
    color: #4CAF50;
    border: 1px solid rgba(76, 175, 80, 0.3);
    display: block;
}

.message.error {
    background-color: rgba(244, 67, 54, 0.2);
    color: #f44336;
    border: 1px solid rgba(244, 67, 54, 0.3);
    display: block;
}