/*
Click nbfs://nbhost/SystemFileSystem/Templates/Licenses/license-default.txt to change this license
Click nbfs://nbhost/SystemFileSystem/Templates/ClientSide/css.css to edit this template
*/
/* 
    Created on : 07 Dec 2024, 19:49:41
    Author     : shaka
*/

/* General Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

body {
    background-color: #f5f5f5;
    color: #333;
}

header {
    text-align: center;
    padding: 20px;
    background-color: #003366;
    color: white;
}

header img {
    width: 100px;
    margin-bottom: 10px;
}

.options-section {
    text-align: center;
    margin: 30px 0;
}

.buttons-container {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.option-btn {
    padding: 10px 20px;
    font-size: 18px;
    color: white;
    background-color: #003366;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s ease-in-out;
}

.option-btn:hover {
    background-color: #0055a4;
}

.form-section {
    display: flex;
    justify-content: center;
    margin: 20px 0;
}

.form {
    display: none;
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    animation: fadeIn 0.7s ease-in-out;
    width: 100%;
    max-width: 500px;
}

.form h3 {
    margin-bottom: 20px;
    color: #003366;
}

label {
    display: block;
    margin: 10px 0 5px;
}

input, select {
    width: 100%;
    padding: 8px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.submit-btn {
    width: 100%;
    padding: 10px;
    color: white;
    background-color: #28a745;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s;
}

.submit-btn:hover {
    background-color: #218838;
}

footer {
    text-align: center;
    padding: 10px;
    background-color: #003366;
    color: white;
}

/* Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .buttons-container {
        flex-direction: column;
    }

    .form {
        padding: 15px;
    }
}
