/*
Click nbfs://nbhost/SystemFileSystem/Templates/Licenses/license-default.txt to change this license
Click nbfs://nbhost/SystemFileSystem/Templates/Other/CascadeStyleSheet.css to edit this template
*/
/* 
    Created on : Aug 30, 2024, 6:17:31 AM
    Author     : jrson
*/

body {
                margin: 0;
                padding: 0;
                display: flex;
                justify-content: center;
                align-items: center;
                height: 100vh;
                background-image: url('../images/misc/SaveTheDateV2-Bkg.jpg');
                background-position: center;
                background-repeat: no-repeat;
                background-attachment: fixed;
                font-family: Arial, sans-serif;
            }
            
            /* Adjust background size for different screen sizes */
            @media (min-width: 1200px) {
                body {
                    background-size: contain;
                }
            }

            @media (max-width: 1199px) {
                body {
                    background-size: cover;
                }
            }

            #login-form {
                background-color: rgba(255, 255, 255, 0.8);
                padding: 20px;
                border-radius: 10px;
                box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
                width: 90%;
                max-width: 400px;
            }

            #login-form input[type="password"] {
                padding: 10px;
                margin-bottom: 10px;
                width: 100%;
                border: 1px solid #ccc;
                border-radius: 5px;
            }

            #login-form button {
                padding: 10px;
                width: 100%;
                background-color: #333;
                color: #fff;
                border: none;
                border-radius: 5px;
                cursor: pointer;
            }

            #login-form button:hover {
                background-color: #555;
            }

            #login-form p {
                color: red;
                font-size: 14px;
                text-align: center;
            }