/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    background-color: #000;
    color: #fff;
    line-height: 1.6;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Login container */
.login-container {
    width: 100%;
    max-width: 420px;
    padding: 20px;
}

.login-card {
    background-color: #111;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
}

/* Logo styles */
.logo {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
}

.logo-icon {
    width: 50px;
    height: 50px;
    margin-right: 10px;
}

.logo-text {
    font-size: 40px;
    font-weight: 700;
    color: #6495ED;
}

/* Form header */
h1 {
    text-align: center;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
}

.subtitle {
    text-align: center;
    color: #aaa;
    margin-bottom: 30px;
    font-size: 14px;
}

/* Form styles */
.login-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 14px;
    font-weight: 500;
    color: #ddd;
}

.input-with-icon {
    position: relative;
    display: flex;
    align-items: center;
}

.input-with-icon svg {
    position: absolute;
    left: 12px;
    width: 18px;
    height: 18px;
    color: #777;
}

.input-with-icon input {
    width: 100%;
    padding: 12px 12px 12px 40px;
    background-color: #222;
    border: 1px solid #333;
    border-radius: 6px;
    color: #fff;
    font-size: 14px;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.input-with-icon input:focus {
    outline: none;
    border-color: #6495ED;
    box-shadow: 0 0 0 2px rgba(100, 149, 237, 0.2);
}

.input-with-icon input::placeholder {
    color: #666;
}

.toggle-password {
    position: absolute;
    right: 12px;
    background: none;
    border: none;
    color: #777;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.toggle-password svg {
    position: static;
    width: 18px;
    height: 18px;
}

.hidden {
    display: none;
}

/* Form options */
.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
}

.remember-me {
    display: flex;
    align-items: center;
    gap: 8px;
}

.remember-me input[type="checkbox"] {
    width: 16px;
    height: 16px;
    accent-color: #6495ED;
}

.forgot-password {
    color: #6495ED;
    text-decoration: none;
    transition: color 0.2s;
}

.forgot-password:hover {
    color: #8EB1FF;
    text-decoration: underline;
}

/* Login button */
.login-button {
    margin-top: 10px;
    padding: 12px;
    background-color: #00a67e;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s;
}

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

/* Sign up link */
.signup-link {
    margin-top: 30px;
    text-align: center;
    font-size: 14px;
    color: #aaa;
}

.signup-link a {
    color: #6495ED;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

.signup-link a:hover {
    color: #8EB1FF;
    text-decoration: underline;
}

/* Responsive adjustments */
@media (max-width: 480px) {
    .login-card {
        padding: 30px 20px;
    }
    
    .login-container {
        padding: 15px;
    }
}