/* Hoja de estilos de AD Secure Access */

.ad-custom-form {
    font-family: inherit;
    width: 100%;
    max-width: 450px;
    margin: 0 auto;
    background: #fff;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.ad-custom-form label {
    font-weight: 600;
    display: block;
    margin-bottom: 8px;
    color: #333;
}

.ad-custom-form input[type="text"], 
.ad-custom-form input[type="email"], 
.ad-custom-form input[type="password"] {
    width: 100%;
    padding: 12px;
    margin-bottom: 18px;
    border: 1px solid #ddd;
    border-radius: 5px;
    box-sizing: border-box;
    font-size: 16px;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.ad-custom-form input[type="text"]:focus, 
.ad-custom-form input[type="email"]:focus, 
.ad-custom-form input[type="password"]:focus {
    border-color: #1abc9c;
    outline: none;
    box-shadow: 0 0 5px rgba(26, 188, 156, 0.3);
}

.ad-custom-form input[type="submit"], 
.ad-btn-primary {
    width: 100%;
    background-color: #1abc9c;
    color: white !important;
    padding: 14px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s;
    display: block;
    text-align: center;
    text-decoration: none;
    margin-bottom: 10px;
}

.ad-custom-form input[type="submit"]:hover, 
.ad-btn-primary:hover {
    background-color: #148f77;
}

.ad-btn-secondary {
    width: 100%;
    background-color: #34495e;
    color: white !important;
    padding: 14px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s;
    display: block;
    text-align: center;
    text-decoration: none;
}

.ad-btn-secondary:hover {
    background-color: #2c3e50;
}

.ad-alerta {
    padding: 15px;
    border-radius: 5px;
    margin-bottom: 20px;
    font-size: 15px;
    text-align: center;
}

.ad-alerta.error {
    color: #d32f2f;
    background: #ffebee;
    border-left: 5px solid #d32f2f;
}

.ad-alerta.exito {
    color: #2e7d32;
    background: #e8f5e9;
    border-left: 5px solid #2e7d32;
}

.ad-form-header {
    font-size: 22px;
    margin-bottom: 20px;
    font-weight: bold;
    color: #222;
    text-align: center;
}

.ad-success-box {
    text-align: center;
    padding: 30px 20px;
    background: #f9f9f9;
    border-radius: 8px;
    border: 1px solid #eee;
}

.ad-success-box h3 {
    color: #27ae60;
    margin-bottom: 15px;
}

.ad-success-box p {
    margin-bottom: 25px;
    color: #555;
}