:root {
    --color-primary: #D35400;   /* Warm orange */
    --color-secondary: #27AE60; /* Natural green */
    --color-accent: #F39C12;    /* Yellow accent */
    --color-text: #2D3436;      /* Dark gray */
    --color-background: #FAF3E0;/* Cream kitchen vibe */
    --color-muted: #E5E5E5;     /* Soft borders/background */
}
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');
*,*::before,*::after{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body.user-login {
    background: var(--color-background);
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    color: var(--color-text);
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}
.box-login {
    background: #fff;
    width: 350px;
    padding: 28px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}
.box-login h2 {
    margin-top: 0;
    text-align: center;
    margin-bottom: 22px;
    color: var(--color-primary);
}
.form-group {
    margin-bottom: 14px;
}
label {
    display: block;
    font-size: 13px;
    margin-bottom: 6px;
    color: var(--color-text);
}

input[type="email"],
input[type="password"],
input[type="text"],
input[type="tel"] {
    position: relative;
    width: 100%;
    padding: 10px 38px 10px 10px;
    border: 1px solid var(--color-muted);
    border-radius: 4px;
    font-size: 14px;
}

.password-wrapper {
    position: relative;
}

.password-wrapper i {
    position: absolute;
    right: 10px;
    top: 11px;
    cursor: pointer;
    color: #888;
}

button {
    width: 100%;
    padding: 10px;
    background: var(--color-primary);
    border: none;
    color: #fff;
    border-radius: 4px;
    margin-top: 8px;
    cursor: pointer;
    font-size: 15px;
}

button:hover {
    background: #b64900;
}
.link-register {
    margin-top: 12px;
    font-size: 13px;
    text-align: center;
}
.link-register a {
    color: var(--color-secondary);
    text-decoration: none;
    font-weight: bold;
}
.link-register a:hover {
    text-decoration: underline;
}
/* ALERTS */
.alert {
    padding: 10px 12px;
    border-radius: 5px;
    font-size: 14px;
    margin-bottom: 14px;
    display: flex;
    align-items: flex-start;
    gap: 6px;
}
.alert i {
    margin-top: 2px;
}
.alert-success {
    background: rgba(46, 204, 113, 0.15);
    border-left: 4px solid var(--color-success);
    color: var(--color-success);
}
.alert-error {
    background: rgba(231, 76, 60, 0.15);
    border-left: 4px solid var(--color-error);
    color: var(--color-error);
}
.alert ul {
    margin: 6px 0 0 16px;
    padding: 0;
    font-size: 13px;
}