/* General Styles */
body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(to bottom, #f0f8ff, #d0e7ff); /* Light gradient blue background */
    color: #004080; /* Dark blue text */
    margin: 0;
    padding: 0;
}

.container {
    text-align: center;
}

/* Logo Styling */
.logo {
    width: 150px;
    margin-bottom: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/* Welcome Text */
.welcome-text {
    font-size: 2.5rem;
    font-weight: 700;
    color: #002f6c; /* Deep blue */
}

.sub-text {
    font-size: 1.2rem;
    color: #0056b3;
    margin-bottom: 30px;
}

/* Button Container */
.button-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

/* Buttons */
.btn-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: white;
    color: #004080;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    padding: 15px 20px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 64, 128, 0.2);
    transition: all 0.3s ease-in-out;
    width: 180px;
    height: 150px;
}

.btn-option:hover {
    background: #004080;
    color: white;
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(0, 64, 128, 0.3);
}

.btn-option img {
    width: 60px;
    margin-bottom: 10px;
    transition: transform 0.3s;
}

.btn-option:hover img {
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .button-container {
        flex-direction: column;
    }
}
/* for register.html */
/* General Styles */
body {
    font-family: Arial, sans-serif;
    background-color: #f0f8ff; /* Light blue background */
    color: #333;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
}

/* Header */
h1 {
    color: #0056b3;
    font-size: 30px;
    font-weight: bold;
    margin-bottom: 20px;
}

/* Form Container */
form {
    background-color: #ffffff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
    width: 420px;
    text-align: center;
}

/* Labels */
form label {
    font-size: 18px;
    font-weight: bold;
    display: block;
    text-align: left;
    margin-top: 10px;
}

/* Bold "Name" Label */
form input[name="name"] + br::before {
    content: " ";
    font-size: 20px;
    font-weight: bold;
}

/* Input Fields with Color Effect */
input[type="text"], select {
    width: 100%;
    padding: 12px;
    margin: 10px 0;
    font-size: 16px;
    border: 1.5px solid #ccc;
    border-radius: 5px;
    transition: all 0.3s ease-in-out;
}

/* Color Effect on Focus */
input[type="text"]:focus, select:focus {
    border-color: #0056b3;
    background-color: #e6f0ff;
    outline: none;
    box-shadow: 0 0 8px rgba(0, 86, 179, 0.5);
}

/* Button Styling */
button {
    background-color: #0056b3;
    color: white;
    padding: 12px 18px;
    font-size: 16px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    margin-top: 12px;
    transition: background 0.3s ease;
}

button:hover {
    background-color: #003d80;
}

/* Camera Section */
#video, #capturedPhoto {
    width: 100%;
    max-width: 340px;
    border: 3px solid #0056b3;
    border-radius: 6px;
    margin: 12px 0;
}

/* Link Styling */
a {
    display: inline-block;
    margin-top: 18px;
    font-size: 18px;
    color: #0056b3;
    text-decoration: none;
    font-weight: bold;
}

a:hover {
    text-decoration: underline;
}
