﻿* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #f0f0f0;
}

.form-container {
    width: 400px;
    background: #ffffff;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    overflow: hidden;
}

.form-box {
    padding: 20px;
}

.form-toggle {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

    .form-toggle button {
        width: 48%;
        padding: 10px;
        background-color: #007bff;
        color: #fff;
        border: none;
        cursor: pointer;
        font-weight: bold;
        border-radius: 5px;
        transition: background-color 0.3s ease;
    }

        .form-toggle button:hover {
            background-color: #0056b3;
        }
.form {
    display: none;
}

    .form.active {
        display: block;
    }

form h2 {
    margin-bottom: 20px;
    color: #333;
    text-align: center;
}

form input {
    width: 100%;
    padding: 12px;
    margin: 10px 0;
    border: 1px solid #ddd;
    border-radius: 5px;
    background-color: #f9f9f9;
}

form button {
    width: 100%;
    padding: 12px;
    background-color: #28a745;
    color: #fff;
    border: none;
    cursor: pointer;
    font-weight: bold;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

    form button:hover {
        background-color: #218838;
    }

form p {
    text-align: center;
    margin-top: 10px;
}

form span {
    color: #007bff;
    cursor: pointer;
}

.social-login {
    display: flex;
    justify-content: space-between;
    margin: 20px 0;
}

.social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48%;
    padding: 12px;
    border-radius: 5px;
    border: none;
    cursor: pointer;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.google-btn {
    background-color: #4285f4;
    color: white;
}

    .google-btn:hover {
        background-color: #357ae8;
    }

.facebook-btn {
    background-color: #3b5998;
    color: white;
}

    .facebook-btn:hover {
        background-color: #334d84;
    }

.social-btn img {
    margin-right: 10px;
}

