body {
    margin: 0;
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: black;
}

.background img {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.login-container {
    background: rgba(76, 81, 105, 0.85);
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    width: 350px;
}

h2 {
    color: white;
    font-size: 28px;
    margin-bottom: 20px;
}

input {
    width: 100%;
    padding: 12px;
    margin: 10px 0;
    border: none;
    border-radius: 5px;
    font-size: 16px;
}

button {
    width: 100%;
    background: #0e0f16;
    color: white;
    padding: 12px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
}

button:hover {
    background: #1b1d2e;
}

.forgot-password {
    color: white;
    display: block;
    margin-top: 10px;
    text-decoration: none;
    font-size: 14px;
    opacity: 0.8;
}

.divider {
    width: 100%;
    height: 1px;
    background: white;
    margin: 20px 0;
    opacity: 0.6;
}


.social-login {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.social-login a {
    font-size: 32px;
    color: white;
    text-decoration: none;
}

.google { color: #DB4437; }
.facebook { color: #3b5998; }
