﻿body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: url('../images/login-bg.jpg') no-repeat center center fixed;
    background-size: cover;
}

.login-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.login-box {
    background: rgba(255, 255, 255, 0.9);
    padding: 30px;
    border-radius: 12px;
    width: 350px;
    text-align: center;
    box-shadow: 0px 4px 12px rgba(0,0,0,0.2);
}

    .login-box h2 {
        margin-bottom: 20px;
        color: #333;
    }

    .login-box input {
        width: 100%;
        padding: 12px;
        margin: 8px 0;
        border: 1px solid #ccc;
        border-radius: 8px;
    }

button {
    width: 100%;
    padding: 12px;
    background: #0078d7;
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
}

    button:hover {
        background: #005bb5;
    }

.social-login {
    margin: 15px 0;
}

.social-icons img {
    width: 35px;
    margin: 0 8px;
    cursor: pointer;
}

.links {
    margin-top: 10px;
}

    .links a {
        display: block;
        color: #0078d7;
        text-decoration: none;
        margin: 5px 0;
    }

footer {
    position: fixed;
    bottom: 15px;
    width: 100%;
    text-align: center;
    color: white;
}

    footer a {
        margin: 0 10px;
        color: white;
        text-decoration: none;
    }

        footer a:hover {
            text-decoration: underline;
        }

/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    justify-content: center;
    align-items: center;
}

.modal-content {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
}
