body.login-body {
    background: #111;
    color: #fff;
    font-family: 'Segoe UI', Arial, sans-serif;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.login-container {
    background: #222;
    padding: 32px 32px 24px 32px;
    border-radius: 18px;
    box-shadow: 0 4px 32px #0009;
    width: 350px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.logo-login {
    width: 100px;
    margin-bottom: 18px;
}

.login-form {
    width: 100%;
    display: flex;
    flex-direction: column;
}

.login-form label {
    margin-bottom: 5px;
    font-size: 14px;
    color: #ffc107;
    font-weight: 600;
}

.login-form input {
    margin-bottom: 16px;
    padding: 10px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    background: #333;
    color: #fff;
    outline: none;
    transition: box-shadow 0.2s;
}

.login-form input:focus {
    box-shadow: 0 0 0 2px #0099ff55;
}

.login-form button {
    background: linear-gradient(90deg, #0099ff 40%, #ffc107 90%);
    color: #111;
    font-weight: bold;
    border: none;
    padding: 12px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 18px;
    margin-bottom: 10px;
    box-shadow: 0 2px 8px #0004;
    transition: background 0.2s;
}
.login-form button:hover {
    background: linear-gradient(90deg, #ffc107 10%, #0099ff 90%);
    color: #000;
}

.error-msg {
    color: #fff;
    background: #c0392b;
    padding: 8px;
    border-radius: 6px;
    margin-top: 8px;
    text-align: center;
    font-size: 15px;
    font-weight: 500;
}

.copy-login {
    margin-top: 14px;
    font-size: 12px;
    color: #ccc;
    letter-spacing: 1px;
}


