body {
    background: #f8f9fa;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.login-container {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    max-width: 400px;
    width: 100%;
}

.login-container h2 {
    color: #5EA504;
    margin-bottom: 1.5rem;
}

.btn-login {
    background-color: #5EA504;
    color: white;
    border: none;
    width: 100%;
    transition: background-color 0.3s ease;
}

.btn-login:hover {
    background-color: #7cd832;
}

.btn-social {
    width: 100%;
    border-radius: 0.5rem;
    font-weight: 600;
    padding: 0.65rem 1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.2s ease-in-out;
    border: 1px solid transparent;
}

.social-icon {
    font-size: 0.95rem;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.2rem;
}

.btn-microsoft {
    background-color: #f3f6fb;
    color: #2f2f2f;
    border-color: #d9e2f2;
}
.btn-microsoft:hover {
    background-color: #e7eefb;
    color: #1f1f1f;
    border-color: #c8d6f0;
}

.btn-google {
    background-color: #fff5f5;
    color: #b42318;
    border-color: #ffd6d6;
}
.btn-google:hover {
    background-color: #ffe9e9;
    color: #912018;
    border-color: #ffc2c2;
}

.btn-social:focus {
    box-shadow: 0 0 0 0.2rem rgba(13, 110, 253, 0.15);
}