/*
* Theme Name:   Hijo 2025
* Theme URI:    twentytwentyfive
* Description:  hijo de 2025 
* Author:       Nicolas K
* Author URI:
* Template:     twentytwentyfive
* Version:      1.0
*
*/

/* ---- BACKGROUND ---- */
body.login {
    background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

/* ---- LOGO ---- */
/* Adjust the logo for your own branding */
.login h1 a {
    background-image: url('https://yoursite.com/your-logo.svg'); /* Replace with your own logo image */
    background-size: contain;
    width: 100%;
    height: 80px;
    display: block;
    margin: 0 auto 20px;
}

/* ---- FORM CONTAINER ---- */
#login {
    width: 380px;
    padding: 30px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* ---- FORM FIELDS ---- */
.login form {
    margin-top: 20px;
}

#loginform p {
    margin-bottom: 20px;
}

.login label {
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.login input[type="text"],
.login input[type="password"] {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    border-radius: 10px;
    padding: 12px 15px;
    width: 100%;
    transition: all 0.3s ease;
}

.login input[type="text"]:focus,
.login input[type="password"]:focus {
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 0 8px rgba(255, 255, 255, 0.3);
    outline: none;
}

/* Change placeholder color */
::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

/* ---- LOGIN BUTTON ---- */
.wp-core-ui .button-primary {
    background: linear-gradient(to right, #ff6a00 0%, #ee0979 100%);
    border: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    font-weight: bold;
    font-size: 16px;
    color: #fff;
    border-radius: 10px;
    padding: 12px 20px;
    transition: all 0.3s ease;
}

.wp-core-ui .button-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* ---- OTHER LINKS ---- */
#nav,
#backtoblog {
    margin-top: 25px;
    text-align: center;
}

#nav a,
#backtoblog a {
    color: #fff !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    transition: all 0.2s ease;
}

#nav a:hover,
#backtoblog a:hover {
    text-decoration: underline;
    color: #ffcc00 !important;
}

/* ---- ERROR MESSAGES ---- */
#login_error {
    background: rgba(255, 99, 71, 0.5);
    border-color: rgba(255, 99, 71, 0.7);
    color: #fff;
    border-left: 4px solid #ff6347;
    padding: 12px;
    border-radius: 10px;
    text-shadow: none;
}

