@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Inter', sans-serif;
}

body {
    background-color: #0f172a;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    color: #f8fafc;
    padding: 20px;
}

.login-container {
    background-color: #1e293b;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.3);
    width: 100%;
    max-width: 420px;
    border: 1px solid #334155;
}

.login-header {
    text-align: center;
    margin-bottom: 30px;
    color: #e94560;
}

.login-header i {
    font-size: 48px;
    margin-bottom: 10px;
}

.login-header h2 {
    font-size: 28px;
    letter-spacing: 1px;
}

.login-form h3 {
    text-align: center;
    margin-bottom: 25px;
    color: #f8fafc;
    font-weight: 500;
}

.input-group {
    margin-bottom: 20px;
}

.input-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    color: #94a3b8;
    font-weight: 500;
}

.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.input-wrapper i {
    position: absolute;
    left: 15px;
    color: #64748b;
}

.input-wrapper input {
    width: 100%;
    padding: 12px 15px 12px 40px;
    border: 1px solid #334155;
    border-radius: 8px;
    background-color: #0f172a;
    color: #f8fafc;
    font-size: 15px;
    transition: 0.3s;
}

.input-wrapper input:focus {
    outline: none;
    border-color: #e94560;
    box-shadow: 0 0 0 3px rgba(233, 69, 96, 0.2);
}

button {
    width: 100%;
    padding: 14px;
    border: none;
    border-radius: 8px;
    background-color: #e94560;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 10px;
}

button:hover {
    background-color: #d13d56;
    transform: translateY(-1px);
}

.error-msg {
    background-color: rgba(239, 68, 68, 0.1);
    color: #f87171;
    padding: 12px;
    border-radius: 8px;
    margin-bottom: 20px;
    text-align: center;
    font-size: 14px;
    border: 1px solid rgba(239, 68, 68, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

@media (max-width: 480px) {
    .login-container {
        padding: 30px 20px;
    }
}