/* ==========================================
   LOGIN PAGE - Hilton IT Assets Management
   Color Scheme: Gold (#fdc22e) + Black/White
========================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Arial, sans-serif;
    background-color: #f5f5f5;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.login-wrapper {
    width: 100%;
    max-width: 480px;
    padding: 20px;
}

.login-card {
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    padding: 40px 35px;
    text-align: center;
}

/* Logo */
.logo-container {
    margin-bottom: 20px;
}

.logo-container img {
    width: 260px;
    height: 40px;
    object-fit: contain;
}

/* Heading */
.welcome-text {
    font-size: 34px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.subtitle {
    font-size: 14px;
    color: #888;
    line-height: 1.5;
    margin-bottom: 25px;
}

/* Error Message */
.error-message {
    background-color: #fdecea;
    color: #c0392b;
    padding: 10px 15px;
    border-radius: 8px;
    font-size: 13px;
    margin-bottom: 20px;
    text-align: left;
}

/* Form Labels */
form {
    text-align: left;
}

label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 8px;
    margin-top: 18px;
}

label:first-of-type {
    margin-top: 0;
}

/* Input Fields */
.input-group {
    position: relative;
    display: flex;
    align-items: center;
}

/* Left icon (lock/user) - always on the left */
.input-group > i:first-child {
    position: absolute;
    left: 16px;
    color: #999;
    font-size: 15px;
    pointer-events: none;
}

.input-group input {
    width: 100%;
    padding: 13px 42px 13px 42px;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    font-size: 14px;
    color: #1a1a1a;
    outline: none;
    transition: border-color 0.2s;
}

.input-group input:focus {
    border-color: #fdc22e;
}

.input-group input::placeholder {
    color: #aaa;
}

/* Right icon (eye toggle) - only for password field */
.toggle-password {
    position: absolute;
    right: 16px;
    cursor: pointer;
    font-size: 15px;
    color: #999;
}

.toggle-password:hover {
    color: #fdc22e;
}

/* Remember Me + Forgot Password */
.form-options {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 18px;
    margin-bottom: 25px;
}

.remember-me {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #444;
    font-weight: 500;
    cursor: pointer;
    margin: 0;
}

.remember-me input[type="checkbox"] {
    width: 16px;
    height: 16px;
    accent-color: #fdc22e;
    cursor: pointer;
}

.forgot-link {
    font-size: 13px;
    color: #fdc22e;
    text-decoration: none;
    font-weight: 600;
}

.forgot-link:hover {
    text-decoration: underline;
}

/* Sign In Button */
.sign-in-btn {
    width: 100%;
    padding: 14px;
    background-color: #fdc22e;
    color: #1a1a1a;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: background-color 0.2s;
    margin-top: 28px;
}

.sign-in-btn:hover {
    background-color: #e6af28;
}

.sign-in-btn i {
    font-size: 14px;
}