.edipo-form-container {
    max_width: 400px;
    margin: 20px auto;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background: #f9f9f9;
    font-family: sans-serif;
}

.edipo-form h3 {
    margin-top: 0;
    text-align: center;
    color: #333;
}

.edipo-form .form-group {
    margin-bottom: 15px;
}

.edipo-form label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    color: #555;
}

.edipo-form input[type="text"],
.edipo-form input[type="email"],
.edipo-form input[type="password"] {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box; /* Fix padding issue */
}

.edipo-form button {
    width: 100%;
    padding: 10px;
    background-color: #0073aa;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
}

.edipo-form button:hover {
    background-color: #005177;
}

.edipo-form .form-message {
    margin: 10px 0;
    padding: 10px;
    border-radius: 4px;
    display: none;
}

.edipo-form .form-message.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.edipo-form .form-message.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}
