/* General Styles */
body {
    font-family: Arial, sans-serif;
    background: #f5f5f5;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

/* Login Container */
.login-container {
    background: white;
    padding: 40px;
    border-radius: 10px;
    text-align: center;
    width: 90%;
    max-width: 400px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Form Box */
.form-box h2 {
    margin-bottom: 10px;
    font-size: 24px;
}

/* Input Box */
.input-box {
    position: relative;
    margin: 20px 0;
}

.input-box input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    outline: none;
    font-size: 16px;
}

.input-box label {
    position: absolute;
    top: 50%;
    left: 10px;
    transform: translateY(-50%);
    color: #888;
    transition: 0.3s;
}

.input-box input:focus ~ label,
.input-box input:valid ~ label {
    top: 5px;
    font-size: 12px;
    color: #333;
}

/* Buttons */
.login-btn, .social-btn {
    width: 100%;
    padding: 12px;
    margin-top: 10px;
    font-size: 16px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    transition: 0.3s;
}

/* Google Button */
.google {
    background: #db4437;
    color: white;
}

.google:hover {
    background: #c1351d;
}

/* Facebook Button */
.facebook {
    background: #1877f2;
    color: white;
}

.facebook:hover {
    background: #1558b3;
}

/* Forgot Password */
.forgot-password {
    margin-top: 15px;
}

.forgot-password a {
    text-decoration: none;
    color: #333;
    font-size: 14px;
}

.forgot-password a:hover {
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 500px) {
    .login-container {
        width: 95%;
        padding: 20px;
    }

    h2 {
        font-size: 22px;
    }
}
