/* css/theme.css */
@import url('https://fonts.googleapis.com/css2?family=Bellota:wght@400;700&display=swap');
/* General Body Styling */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
    overflow-x: hidden; /* Prevent horizontal scroll */
    /*background-image: url('../img/background.jpg'); Adjust path as needed */
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* Keep background fixed during scroll */
    min-height: 100vh; /* Ensure body takes full viewport height */
    display: flex; /* Use flexbox to center content */
    justify-content: center; /* Center horizontally */
    align-items: center; /* Center vertically */
    color: #333; /* Default text color */
}

/* Custom Scrollbar (for a sleek look) */
body::-webkit-scrollbar {
    width: 8px;
}

body::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

body::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 10px;
}

body::-webkit-scrollbar-thumb:hover {
    background: #555;
}

/* Auth Container (for login, signup, verify mobile, dashboard cards) */
.auth-container {
    background-color: rgba(255, 255, 255, 0.95); /* Slightly transparent white background */
    padding: 40px;
    border-radius: 15px; /* More rounded corners */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15); /* Stronger, more prominent shadow */
    max-width: 500px; /* Max width for consistency */
    width: 95%; /* Responsive width */
    text-align: center;
    position: relative; /* Needed for absolute positioning of messages/logo if any */
    z-index: 1; /* Ensure it's above any background overlays */
    /* Add some margin if the content is very tall, so it doesn't stick to edges */
    margin: 30px auto; /* Centered with vertical margin */
}

/* Logo Styling within Auth Container */
.logo-container {
    font-family: 'Bellota', cursive;
    margin-bottom: 25px; /* Space below the logo */
    position: fixed;
    top: 0;          /* Aligns to the top edge of the viewport */
    left: 0;
    padding: 20px
}

.logo-container  h2{
    font-family: 'Bellota', cursive;
    font-weight: bolder;
    text-align: center;
}
.logo {
    font-family: 'Bellota', cursive;
    max-width: 250px; /* Adjust logo size */
    height: auto;
    display: block; /* Remove extra space below img */
    margin: 0 auto; /* Center the logo */
}

/* Headings */
h1, h2, h3, h4, h5, h6 {
    color: #34495e; /* A slightly darker, more professional color for headings */
    margin-bottom: 15px; /* Space below headings */
    font-weight: 600; /* Slightly bolder headings */
}

/* Form Group consistency (optional, can also be in style.css) */
.form-group {
    margin-bottom: 20px; /* Consistent spacing for form fields */
    text-align: left; /* Align labels left */
}

.form-label {
    font-weight: 500;
    color: #555;
    margin-bottom: 8px; /* Space between label and input */
    display: block; /* Ensure label takes full width */
}

.form-control {
    border-radius: 8px; /* Slightly rounded inputs */
    border: 1px solid #ced4da;
    padding: 10px 15px;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.05);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-control:focus {
    border-color: #80bdff;
    box-shadow: 0 0 0 0.25rem rgba(0, 123, 255, 0.25);
}

/* Buttons (Primary and Success) - Bootstrap defaults are good, but can be styled further */
.btn-primary {
    background-color: #007bff;
    border-color: #007bff;
    border-radius: 8px;
    padding: 10px 20px;
    font-weight: bold;
    transition: background-color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.btn-primary:hover {
    background-color: #0056b3;
    border-color: #004085;
    box-shadow: 0 4px 8px rgba(0, 123, 255, 0.2);
}

.btn-success {
    background-color: #28a745;
    border-color: #28a745;
    border-radius: 8px;
    padding: 10px 20px;
    font-weight: bold;
    transition: background-color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.btn-success:hover {
    background-color: #218838;
    border-color: #1e7e34;
    box-shadow: 0 4px 8px rgba(40, 167, 69, 0.2);
}

/* Alert messages */
.alert {
    border-radius: 8px;
    padding: 15px 20px;
    margin-bottom: 20px;
    font-size: 0.95rem;
    text-align: left;
}

/* Link styling */
a {
    color: #007bff;
    text-decoration: none;
    transition: color 0.2s ease;
}

a:hover {
    color: #0056b3;
    text-decoration: underline;
}

/* Utility classes (Bootstrap's are preferred, but common ones can be added) */
.text-center { text-align: center; }
.mb-3 { margin-bottom: 1rem !important; }
.mt-3 { margin-top: 1rem !important; }
/* Add more as needed from Bootstrap if not using directly in HTML */
.a-bold{
    font-weight: bold;
}

.p-small{
    font-size: x-small;
}