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

body {
    font-family: 'Arial', sans-serif;
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.login-box {
    background: white;
    border-radius: 10px;
    padding: 40px 30px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    text-align: center;
}

h1 {
    color: #333;
    font-size: 28px;
    margin-bottom: 10px;
    font-weight: 300;
}

.tagline {
    color: #666;
    font-size: 14px;
    margin-bottom: 30px;
    font-style: italic;
}

.login-form {
    width: 100%;
}

.input-group {
    margin-bottom: 20px;
    text-align: left;
}

input[type="text"], 
input[type="password"] {
    width: 100%;
    padding: 15px;
    border: 2px solid #e1e1e1;
    border-radius: 5px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

input[type="text"]:focus, 
input[type="password"]:focus {
    outline: none;
    border-color: #2a5298;
}

.login-btn {
    width: 100%;
    padding: 15px;
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: transform 0.2s ease;
    margin-bottom: 20px;
}

.login-btn:hover {
    transform: translateY(-2px);
}

.create-account {
    padding-top: 20px;
    border-top: 1px solid #e1e1e1;
}

.create-link {
    color: #2a5298;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.create-link:hover {
    color: #1e3c72;
}


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