/* Background and wrapper */
body {
    margin: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #6c5ce7, #00b894);
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

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

/* Card */
.login-card {
    background: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
    text-align: center;
}

/* Header */
.login-header h1 {
    margin: 0;
    color: #6c5ce7;
    font-size: 2em;
}

.login-header p {
    color: #555;
    margin-bottom: 25px;
}

/* Inputs */
.input-group {
    margin-bottom: 20px;
    position: relative;
}

.input-group input {
    width: 100%;
    padding: 12px 15px;
    border-radius: 8px;
    border: 1px solid #ccc;
    font-size: 1em;
    transition: all 0.3s ease;
}

.input-group input:focus {
    border-color: #6c5ce7;
    box-shadow: 0 0 5px rgba(108,92,231,0.5);
    outline: none;
}

/* Button */
button {
    width: 100%;
    padding: 12px;
    background: #6c5ce7;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1em;
    cursor: pointer;
    transition: background 0.3s ease;
}

button:hover {
    background: #341f97;
}

/* Login message */
#loginMessage {
    margin-top: 15px;
    font-weight: 500;
}
