* {
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    margin: 0;
    height: 100vh;
    background: linear-gradient(135deg, #1E3A8A, #C62828);
    display: flex;
    align-items: center;
    justify-content: center;
}

.login-container {
    width: 100%;
    max-width: 420px;
    padding: 20px;
}

.login-card {
    background: #ffffff;
    border-radius: 14px;
    padding: 32px;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.2);
}

.login-header {
    text-align: center;
    margin-bottom: 28px;
}

.login-header img {
    display: block;
    margin: 0 auto 16px auto;
    height: 100px;
    width: 100px;
}

.login-header h1 {
    margin: 0;
    font-size: 26px;
    font-weight: 600;
    color: #1E3A8A;
}

.login-header p {
    font-size: 14px;
    color: #6B7280;
}

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    font-size: 13px;
    margin-bottom: 6px;
    color: #374151;
}

.form-group input {
    width: 100%;
    padding: 12px;
    border-radius: 8px;
    border: 1px solid #E5E7EB;
    font-size: 14px;
    transition: border 0.2s;
}

.form-group input:focus {
    outline: none;
    border-color: #1E3A8A;
}

.password-wrapper {
    position: relative;
}

.password-wrapper span {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    font-size: 14px;
}

.btn-login {
    width: 100%;
    padding: 12px;
    margin-top: 8px;
    background: linear-gradient(90deg, #1E3A8A, #C62828);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.2s;
}

.btn-login:hover {
    opacity: 0.9;
}

.forgot-password {
    display: block;
    margin-top: 16px;
    text-align: center;
    font-size: 13px;
    color: #1E3A8A;
    text-decoration: none;
}

.register-link {
    display: block;
    margin-top: 18px;
    text-align: center;
    font-size: 14px;
    color: #555;
    text-decoration: none;
}

.register-link:hover {
    text-decoration: underline;
}