@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    background-color: #f8f9fa;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    color: #333;
}
.login-container {
    width: 100%;
    padding: 20px;
}
.login-card {
    background-color: #ffffff;
    padding: 40px 30px;
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    max-width: 400px;
    margin: 0 auto;
    text-align: center;
}
.logo {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 30px;
    color: #1a1a1a;
}
.input-group {
    margin-bottom: 20px;
    position: relative;
}
.input-group input {
    width: 100%;
    padding: 16px;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    font-size: 1rem;
    background-color: #fdfdfd;
    transition: border-color 0.3s, box-shadow 0.3s;
}
.input-group input::placeholder {
    color: #999;
}
.input-group input:focus {
    outline: none;
    border-color: #8b5cf6;
    box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.1);
}
.forgot-password {
    display: block;
    text-align: right;
    margin-top: -10px;
    margin-bottom: 25px;
    font-size: 0.9rem;
    color: #555;
    text-decoration: none;
    transition: color 0.3s;
}
.forgot-password:hover {
    color: #8b5cf6;
}

.signup-link {
    margin-top: 30px;
    font-size: 0.95rem;
    color: #555;
}

.signup-link a {
    color: #8b5cf6;
    font-weight: 600;
    text-decoration: none;
    transition: opacity 0.3s;
}
.signup-link a:hover {
    opacity: 0.8;
}
.btn-login {
    width: 100%;
    padding: 16px;
    border: none;
    border-radius: 12px;
    background-image: linear-gradient(to right, #8f10c5ff, #000cb9ff);
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.3s;
    box-shadow: 0 5px 20px rgba(74, 0, 224, 0.2);
}
.btn-login.purple-pink {
    background: linear-gradient(90deg, #8A2387, #E94057, #F27121);
}
.btn-login.blue-purple {
     background-image: linear-gradient(to right, #8f10c5ff, #000cb9ff);
}
.btn-login {
    background-image: linear-gradient(to right, #8f10c5ff, #000cb9ff);
}
.btn-login:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(74, 0, 224, 0.3);
}

.social-login {
    width: 100%;
    margin-bottom: 1rem;
}

.google-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    
    width: 100%;
    padding: 10px;
    
    background-color: #ffffff;
    border: 1px solid #dadce0;
    border-radius: 8px;
    
    color: #3c4043;
    font-family: 'Roboto', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    
    text-decoration: none;
    cursor: pointer;
    transition: background-color .3s, box-shadow .3s;
}

.google-btn:hover {
    background-color: #f8f9fa;
    border-color: #c6c6c6;
    box-shadow: 0 1px 2px rgba(0,0,0,0.05);
}

.google-btn img {
    width: 18px;
    height: 18px;
}

.divider {
    width: 100%;
    text-align: center;
    border-bottom: 1px solid #e0e0e0;
    line-height: 0.1em;
    margin: 20px 0;
}

.divider span {
    background: #fff;
    padding: 0 10px;
    color: #999;
    font-size: 0.9rem;
}
.logo img {
    max-width: 180px;
    height: auto;
}