@import url('estilo.css');

main {
    width: 100%;
    max-width: 400px;
    background: white;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    margin: 50px auto;
}

main h2 {
    text-align: center;
    margin-bottom: 20px;
    font-size: 24px;
    color: #28a745;
}

form {
    display: flex;
    flex-direction: column;
}

label {
    margin-bottom: 5px;
    font-weight: bold;
    color: #28a745;
}

input[type="text"],
input[type="email"],
input[type="password"] {
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
}

button[type="submit"] {
    padding: 10px;
    background-color: #28a745;
    border: none;
    color: white;
    font-weight: bold;
    cursor: pointer;
    border-radius: 4px;
    transition: background-color 0.3s;
}

button[type="submit"]:hover {
    background-color: #218838;
}

.register-link, .login-link {
    margin-top: 20px;
    text-align: center;
}

.btn-register, .btn-login {
    display: inline-block;
    padding: 10px 20px;
    background-color: #007bff;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.btn-register:hover, .btn-login:hover {
    background-color: #0056b3;
}

#mensaje {
    margin-top: 15px;
    padding: 10px;
    border-radius: 4px;
    text-align: center;
    display: none;
}

#mensaje.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

#mensaje.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

/* Specific styles for registration form */
#registroForm {
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

#registroForm label {
    display: block;
    margin-bottom: 8px;
}

#registroForm input {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 16px;
}

#registroForm button[type="submit"] {
    width: 100%;
    padding: 12px;
    font-size: 18px;
    background-color: #28a745;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
}

#registroForm button[type="submit"]:hover {
    background-color: #218838;
}

@media (max-width: 768px) {
    main {
        width: 90%;
        padding: 15px;
    }

    input[type="text"],
    input[type="email"],
    input[type="password"],
    button[type="submit"] {
        font-size: 16px;
    }

    #registroForm {
        padding: 15px;
    }

    #registroForm input,
    #registroForm button[type="submit"] {
        font-size: 14px;
    }
}

