@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;700&display=swap');

:root {
    --primary-color: #3b82f6;
    --secondary-color: #10b981;
    --bg-dark: #0f172a;
    --text-light: #f8fafc;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

a{
    text-decoration: none;
}

body {
    /* font-family: 'Inter', sans-serif; */
    font-family: 'Varela Round', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-light);
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background: linear-gradient(135deg, var(--bg-dark) 0%, #1e293b 100%);
}

.login-container {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 50px;
    width: 100%;
    max-width: 450px;
    box-shadow: 0 25px 50px rgba(0,0,0,0.2);
    text-align: center;
}

.login-header {
    margin-bottom: 30px;
}

.login-header h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: var(--text-light);
}

.login-header p {
    color: rgba(248, 250, 252, 0.7);
}

.login-form {
    display: flex;
    flex-direction: column;
}

.form-input {
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--text-light);
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(59,130,246,0.3);
}

.login-btn {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 15px;
    border-radius: 50px;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 20px;
}

.login-btn:hover {
    background-color: var(--secondary-color);
    transform: translateY(-3px);
}

.google-login-btn {
    background-color: white;
    color: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    border-radius: 50px;
    font-size: 1rem;
    gap: 10px;
    transition: all 0.3s ease;
}

.google-login-btn:hover {
    background-color: var(--secondary-color);
    cursor: pointer;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.google-login-btn img {
    width: 24px;
    height: 24px;
}

.signup-link {
    margin-top: 20px;
    color: rgba(248, 250, 252, 0.7);
}

.signup-link a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: bold;
}

@media screen and (max-width: 480px) {
    .login-container {
        padding: 30px;
        margin: 0 15px;
    }

    .login-header h1 {
        font-size: 2rem;
    }
}