@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;700&display=swap');

body {
    margin: 0;
    padding: 0;
    font-family: 'Outfit', sans-serif;
    background: url('https://images.unsplash.com/photo-1557683316-973673baf926?q=80&w=2000&auto=format&fit=crop') no-repeat center center fixed;
    background-size: cover;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

/* Pseudo-element for the blurred background effect from the screenshot */
body::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 30%, rgba(41, 196, 255, 0.4) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(20, 83, 114, 0.6) 0%, transparent 50%),
        rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(60px);
    z-index: -1;
}

.login-container {
    width: 100%;
    max-width: 440px;
    padding: 20px;
    animation: fadeIn 0.8s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.login-card {
    background: #ffffff;
    padding: 48px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.logo img {
    height: 32px;
}

.language-selector select {
    padding: 8px 12px;
    border: 1px solid #eee;
    border-radius: 8px;
    background: #fff;
    cursor: pointer;
    font-size: 14px;
    color: #444;
    outline: none;
    transition: all 0.3s;
}

.language-selector select:hover {
    border-color: #3498db;
}

.welcome-section {
    margin-bottom: 35px;
}

.welcome-section h1 {
    margin: 0 0 8px 0;
    font-size: 32px;
    font-weight: 700;
    color: #333;
    letter-spacing: -0.5px;
}

.welcome-section p {
    margin: 0;
    color: #999;
    font-size: 15px;
    font-weight: 400;
}

.wave {
    display: inline-block;
}

.input-group {
    margin-bottom: 24px;
}

.input-group label {
    display: block;
    margin-bottom: 10px;
    font-size: 14px;
    font-weight: 600;
    color: #bbb;
    letter-spacing: 0.5px;
}

.input-group input,
.input-group select {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    font-size: 16px;
    color: #333;
    box-sizing: border-box;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background-color: #f9fafb;
}

.input-group input:focus,
.input-group select:focus {
    border-color: #3498db;
    background-color: #fff;
    box-shadow: 0 0 0 4px rgba(52, 152, 219, 0.1);
    outline: none;
}

.password-wrapper {
    position: relative;
}

.toggle-password {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    color: #ccc;
    padding: 0;
    display: flex;
    align-items: center;
    transition: color 0.3s;
}

.toggle-password:hover {
    color: #3498db;
}

.form-footer {
    display: flex;
    justify-content: flex-end;
    margin-top: -10px;
    margin-bottom: 30px;
}

.forgot-password {
    text-decoration: none;
    color: #3498db;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s;
}

.forgot-password:hover {
    color: #2980b9;
    text-decoration: underline;
}

.sign-in-btn {
    width: 100%;
    padding: 16px;
    background: #3498db;
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.sign-in-btn:hover {
    background: #2980b9;
    transform: translateY(-1px);
    box-shadow: 0 8px 20px rgba(52, 152, 219, 0.3);
}

.sign-in-btn:active {
    transform: translateY(0);
}