/*
 * CHENIBA Social Network - Traditional Authentication Styles
 */

/* Apply base styles only when the forms are present */
.login, .register {
    font-family: 'Cormorant Garamond', serif;
}

/* Style the form containers generated by the shortcodes */
#loginform,
.csn-auth-form form {
    background: #171137; /* User's Primary Color */
    padding: 2rem;
    border-radius: 25px;
    box-shadow: 10px 10px 20px #110d2b, -10px -10px 20px #1d1543; /* Dark theme shadows */
    border: none;
    max-width: 400px;
    margin: 2em auto;
}

/* Style form labels */
#loginform label,
.csn-auth-form label {
    color: #D9C2C0; /* User's Text Color */
    font-weight: bold;
    margin-bottom: 8px;
    display: block;
}

/* Style form inputs */
#loginform input[type="text"],
#loginform input[type="password"],
.csn-auth-form input[type="text"],
.csn-auth-form input[type="email"],
.csn-auth-form input[type="password"] {
    width: 100%;
    padding: 0.75rem 1rem;
    margin-top: 5px;
    border-radius: 10px;
    border: none;
    background: #171137;
    box-shadow: inset 3px 3px 6px #110d2b, inset -3px -3px 6px #1d1543;
    font-size: 14px;
    color: #D9C2C0;
    transition: all 0.3s ease;
}

#loginform input[type="text"]:focus,
#loginform input[type="password"]:focus,
.csn-auth-form input[type="text"]:focus,
.csn-auth-form input[type="email"]:focus,
.csn-auth-form input[type="password"]:focus {
    outline: none;
    box-shadow: inset 1px 1px 3px #110d2b, inset -1px -1px 3px #1d1543;
}

/* Style submit buttons */
#loginform input[type="submit"],
.csn-auth-form input[type="submit"] {
    width: 100%;
    padding: 0.8rem;
    border: none;
    margin-top: 1rem;
    border-radius: 15px;
    background: #171137;
    box-shadow: 5px 5px 10px #110d2b, -5px -5px 10px #1d1543;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #D9C2C0;
    font-size: 16px;
    font-family: 'Cormorant Garamond', serif;
}

#loginform input[type="submit"]:hover,
.csn-auth-form input[type="submit"]:hover {
    box-shadow: 3px 3px 8px #110d2b, -3px -3px 8px #1d1543;
}

/* Style error messages */
#login_error,
.csn-form-errors {
    background-color: #721c24;
    color: #f8d7da;
    border: 1px solid #f5c6cb;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.csn-form-errors p {
    margin: 0;
    padding: 5px 0;
}

/* Style links below the login form (e.g., 'Lost your password?') */
#nav, #backtoblog {
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
    padding: 10px 0;
    text-align: center;
}

#nav a, #backtoblog a {
    color: #D9C2C0;
    text-decoration: none;
}

#nav a:hover, #backtoblog a:hover {
    text-decoration: underline;
}
