* { margin:0; padding:0; box-sizing:border-box; }

body {
    background: #0d0d0d;
    background-image:
        radial-gradient(circle at 20% 50%, rgba(244,121,32,.06) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(244,121,32,.04) 0%, transparent 40%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Segoe UI', Arial, sans-serif;
}

.login-wrapper {
    width: 100%;
    max-width: 400px;
    padding: 20px;
}

.login-card {
    background: #141414;
    border: 1px solid #252525;
    border-top: 3px solid #F47920;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 24px 64px rgba(0,0,0,.9);
}

.login-header {
    background: #0a0a0a;
    padding: 32px 30px 24px;
    text-align: center;
    border-bottom: 1px solid #1f1f1f;
}

.logo-svg { display: block; margin: 0 auto 16px; }

.logo-text {
    color: #F47920;
    font-size: 26px;
    font-weight: 700;
    letter-spacing: 5px;
    margin-bottom: 6px;
}

.logo-sub {
    color: #555;
    font-size: 10px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
}

.login-body { padding: 28px 30px; }

.form-group {
    margin-bottom: 18px;
    position: relative;
}

label {
    display: block;
    color: #666;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 7px;
    font-weight: 600;
}

input[type=text], input[type=password] {
    width: 100%;
    background: #0d0d0d;
    border: 1px solid #2a2a2a;
    border-radius: 5px;
    color: #e0e0e0;
    padding: 11px 14px;
    font-size: 14px;
    font-family: inherit;
    outline: none;
    transition: border-color .2s, box-shadow .2s;
}

input:focus {
    border-color: #F47920;
    box-shadow: 0 0 0 2px rgba(244,121,32,.12);
}

.pass-toggle {
    position: absolute;
    right: 11px;
    bottom: 10px;
    background: none;
    border: none;
    color: #444;
    cursor: pointer;
    font-size: 15px;
    padding: 0;
    line-height: 1;
}

.pass-toggle:hover { color: #888; }

.btn-login {
    width: 100%;
    background: #F47920;
    color: #fff;
    border: none;
    border-radius: 5px;
    padding: 13px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2.5px;
    cursor: pointer;
    margin-top: 6px;
    transition: background .2s, transform .1s;
}

.btn-login:hover { background: #d4641a; }
.btn-login:active { transform: scale(.99); }

.alert {
    padding: 11px 14px;
    border-radius: 5px;
    font-size: 12px;
    margin-bottom: 18px;
}

.alert-danger  { background: rgba(192,57,43,.12); border: 1px solid rgba(192,57,43,.35); color: #e74c3c; }
.alert-warning { background: rgba(230,126,34,.1);  border: 1px solid rgba(230,126,34,.3);  color: #e67e22; }

.login-footer {
    text-align: center;
    padding: 14px 30px;
    border-top: 1px solid #1a1a1a;
    color: #3a3a3a;
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.pass-update-card {
    background: #141414;
    border: 1px solid #252525;
    border-top: 3px solid #F47920;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 24px 64px rgba(0,0,0,.9);
}

.pass-update-card h2 { color: #F47920; font-size: 18px; margin-bottom: 10px; }
.pass-update-card p  { color: #777; font-size: 13px; margin-bottom: 22px; }
