/* Complete CSS Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%;
    font-family: 'Nunito', sans-serif;
    background: transparent;
}

/* Main Login Container */
.login-wrapper {
    width: 100%;
    height: 100vh;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    background-image: url('/public/images/ac-bg.jpg');
    background-position: center center;
    background-size: 100% 100%;
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

/* Login Form Container */
.login-form {
    width: 100%;
    max-width: 400px;
    background-color: #202841;
    padding: 40px;
    border-radius: 5px;
    color: #fff;
    position: relative;
    z-index: 10;
}

/* Logo */
.login-logo {
    text-align: center;
    margin-bottom: 20px;
}

.login-logo h1 {
    font-size: 28px;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.login-subtitle {
    text-align: center;
    color: #fff;
    font-size: 16px;
    margin-bottom: 30px;
    opacity: 0.9;
}

/* Form Elements */
.form-group {
    margin-bottom: 20px;
}

.form-input {
    width: 100%;
    height: 46px;
    background-color: #262e48;
    border: 2px solid #2b3250;
    color: #fff;
    padding: 0 15px;
    font-size: 14px;
    border-radius: 0;
    outline: none;
    transition: border-color 0.3s ease;
}

.form-input:focus {
    border-color: #518ce5;
}

.form-input::placeholder {
    color: #adb5bd;
}

/* Checkbox */
.checkbox-container {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.checkbox-container input[type="checkbox"] {
    margin-right: 8px;
    transform: scale(1.1);
}

.checkbox-container label {
    color: #fff;
    font-size: 14px;
    cursor: pointer;
}

/* Button */
.login-button {
    width: 100%;
    height: 46px;
    background-color: #f06548;
    border: none;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    border-radius: 0;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.login-button:hover {
    background-color: #e55a3f;
}

/* Links */
.forgot-password {
    text-align: center;
    margin-top: 20px;
}

.forgot-password a {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
}

.forgot-password a:hover {
    color: #f06548;
    text-decoration: underline;
}

.create-account {
    text-align: center;
    margin-top: 30px;
    color: #fff;
}

.create-account a {
    color: #f06548;
    text-decoration: none;
    font-weight: 600;
}

.create-account a:hover {
    color: #fff;
    text-decoration: underline;
}

/* Alert Messages */
.alert {
    padding: 12px 15px;
    margin-bottom: 20px;
    border-radius: 5px;
    font-size: 14px;
    text-align: center;
}

.alert-danger {
    background-color: rgba(240, 101, 72, 0.1);
    color: #f06548;
    border: 1px solid rgba(240, 101, 72, 0.2);
}

.alert-success {
    background-color: rgba(10, 179, 156, 0.1);
    color: #0ab39c;
    border: 1px solid rgba(10, 179, 156, 0.2);
}

/* Responsive Design */
@media (max-width: 480px) {
    .login-form {
        margin: 20px;
        padding: 30px 20px;
    }
}
