* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #F0F4F8;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.login-container {
    width: 100%;
    max-width: 450px;
    padding: 20px;
}

.login-card {
    background: white;
    padding: 40px;
    border-radius: 24px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    text-align: center;
    animation: slideUp 0.8s ease-out;
}

@keyframes slideUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.logo-small {
    width: 60px;
    height: 60px;
    background: #2196F3;
    color: white;
    font-size: 32px;
    font-weight: 700;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 16px;
    margin: 0 auto 20px;
    box-shadow: 0 8px 15px rgba(33, 150, 243, 0.3);
}

.card-header h2 {
    font-size: 28px;
    color: #333;
    margin-bottom: 8px;
}

.card-header p {
    color: #777;
    font-size: 14px;
    margin-bottom: 30px;
}

.input-group {
    text-align: left;
    margin-bottom: 20px;
}

.input-group label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: #555;
    margin-bottom: 8px;
}

.input-wrapper {
    position: relative;
}

.input-wrapper i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #2196F3;
}

.input-wrapper input {
    width: 100%;
    padding: 12px 15px 12px 45px;
    border: 2px solid #E1E8EE;
    border-radius: 12px;
    outline: none;
    transition: all 0.3s;
    font-size: 15px;
}

.input-wrapper input:focus {
    border-color: #2196F3;
    box-shadow: 0 0 0 4px rgba(33, 150, 243, 0.1);
}

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    font-size: 13px;
}

.remember-me {
    color: #666;
    display: flex;
    align-items: center;
    cursor: pointer;
}

.remember-me input {
    margin-right: 8px;
}

.forgot-password {
    color: #2196F3;
    text-decoration: none;
    font-weight: 500;
}

.login-btn {
    width: 100%;
    padding: 14px;
    background: #2196F3;
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    transition: all 0.3s;
    box-shadow: 0 5px 15px rgba(33, 150, 243, 0.3);
}

.login-btn:hover {
    background: #1976D2;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(33, 150, 243, 0.4);
}

.social-login {
    margin-top: 30px;
    position: relative;
}

.social-login p {
    font-size: 13px;
    color: #999;
    margin-bottom: 15px;
    position: relative;
}

.social-login p::before, .social-login p::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 30%;
    height: 1px;
    background: #EEE;
}

.social-login p::before { left: 0; }
.social-login p::after { right: 0; }

.social-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.social-btn {
    width: 50px;
    height: 50px;
    border: 2px solid #F0F4F8;
    border-radius: 12px;
    background: white;
    cursor: pointer;
    font-size: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s;
}

.social-btn:hover {
    background: #F8FAFC;
    border-color: #E2E8F0;
    transform: scale(1.05);
}

.signup-link {
    margin-top: 25px;
    font-size: 14px;
    color: #666;
}

.signup-link a {
    color: #2196F3;
    text-decoration: none;
    font-weight: 600;
}
