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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: linear-gradient(135deg, #1e2a4a 0%, #1a2744 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.bg-circle {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.6;
}

.bg-circle-1 {
    width: 500px;
    height: 500px;
    background: linear-gradient(135deg, #667eea 0%, #e91e8d 100%);
    top: -100px;
    left: -100px;
}

.bg-circle-2 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, #00d2ff 0%, #3a7bd5 100%);
    bottom: -100px;
    right: -100px;
}

.logo {
    position: absolute;
    top: 40px;
    left: 60px;
    color: white;
}

.logo-text {
    font-size: 24px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.logo-text span {
    color: #e91e8d;
}

.logo-subtext {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 4px;
}

.container {
    background: white;
    border-radius: 12px;
    padding: 48px 40px;
    width: 100%;
    max-width: 420px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 1;
    margin: 20px;
}

.container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #e91e8d 0%, #ff6b9d 100%);
    border-radius: 12px 12px 0 0;
}

.header {
    text-align: center;
    margin-bottom: 32px;
}

.title {
    font-size: 24px;
    font-weight: 700;
    color: #1a2744;
    margin-bottom: 8px;
}

.subtitle {
    font-size: 14px;
    color: #6b7280;
}

.form-group {
    margin-bottom: 24px;
}

.label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: #374151;
    margin-bottom: 8px;
}

.input-wrapper {
    position: relative;
}

.input {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    font-size: 15px;
    transition: all 0.3s ease;
    background: #f9fafb;
}

.input:focus {
    outline: none;
    border-color: #e91e8d;
    background: white;
    box-shadow: 0 0 0 3px rgba(233, 30, 141, 0.1);
}

.input::placeholder {
    color: #9ca3af;
}

.password-wrapper {
    position: relative;
}

.password-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.password-actions .label {
    margin-bottom: 0;
}

.forgot-password {
    font-size: 13px;
    color: #e91e8d;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.btn {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, #e91e8d 0%, #ff6b9d 100%);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 8px;
    box-shadow: 0 4px 15px rgba(233, 30, 141, 0.3);
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(233, 30, 141, 0.4);
}

.btn:active {
    transform: translateY(0);
}

.btn-icon {
    font-size: 18px;
}

@media (max-width: 480px) {
    .container {
        padding: 40px 24px;
    }

    .logo {
        left: 20px;
        top: 20px;
    }

    .bg-circle {
        filter: blur(60px);
    }
}
