/* Form styles */
.signup-container {
    width: 100%;
    max-width: 400px;
    background: white;
    border: 1px solid #ccc;
    margin: 2rem auto 0;
}

.header {
    background: linear-gradient(to bottom, #8bb6d6, #5d89b0);
    color: white;
    padding: 8px 12px;
    font-size: 12px;
    font-weight: bold;
    border-bottom: 1px solid #4a7296;
}

.form-content {
    padding: 15px;
    background: white;
}

.form-row {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.form-label {
    width: 100px;
    font-size: 11px;
    color: #333;
    font-weight: normal;
    text-align: left;
}

.form-input {
    flex: 1;
}

input[type="text"], input[type="email"], input[type="password"] {
    width: 200px;
    padding: 2px 4px;
    border: 1px solid #999;
    font-size: 11px;
    font-family: Verdana, Arial, sans-serif;
}

.signup-button {
    background: linear-gradient(to bottom, #ffd700, #ffb000);
    border: 1px solid #cc8800;
    padding: 4px 12px;
    font-size: 11px;
    font-weight: bold;
    cursor: pointer;
    margin-top: 10px;
}

.signup-button:hover {
    background: linear-gradient(to bottom, #ffe030, #ffbb20);
}
