﻿body {
    background: linear-gradient(135deg, #fafafa 0%, #f5f5f7 100%);
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

.login-container {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    width: 350px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    text-align: center;
}

h2 {
    margin-bottom: 20px;
}

.social-buttons {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

    .social-buttons button {
        flex: 1;
        padding: 10px;
        margin: 0 5px;
        border: none;
        border-radius: 6px;
        color: #fff;
        font-weight: bold;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
    }

.facebook-btn {
    background: #3b5998;
}

.google-btn {
    background: #fff;
    color: #333;
    border: 1px solid #ccc;
    width: 100%;
    border-radius: 10px;
    padding: 10px;
    font-weight: bold;
    text-decoration: none;
}

form {
    text-align: left;
}

label {
    display: block;
    margin-top: 15px;
    margin-bottom: 5px;
    font-size: 14px;
}

.forgot-link {
    float: right;
    font-size: 12px;
    text-decoration: none;
    color: #007BFF;
}

input[type="text"], input[type="password"] {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 6px;
    margin-bottom: 10px;
}

.signin-btn {
    width: 100%;
    padding: 12px;
    background: #333;
    color: #fff;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    margin-top: 15px;
    font-weight: bold;
}

.signup-text {
    margin-top: 20px;
    font-size: 14px;
}
