﻿body {
}

/* Error message styling */
.error-message {
    color: red;
    margin-bottom: 10px;
}

.home-container {
    max-width: 450px;
    margin: 2rem auto;
    padding: 0 1rem;
    text-align: center;
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    color: #444;
}

.home-logo {
    max-width: 250px;
    max-height: 250px;
    margin-bottom: 1rem;
}

.home-title {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.home-description {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.home-details {
    font-size: 0.9rem;
    color: #777;
    line-height: 1.4;
}

.text-cadet {
    color: cadetblue; /* or use hex: #5f9ea0 */
    font-weight: bold;
}

.text-lightseagreen {
    color: lightseagreen; /* or use hex: #5f9ea0 */
    font-weight: bold;
}

.text-dodgerblue {
    color: dodgerblue; /* or use hex: #5f9ea0 */
    font-weight: bold;
}

.text-indianred {
    color: indianred; /* or use hex: #5f9ea0 */
    font-weight: bold;
}

.text-cornflowerblue {
    color: cornflowerblue; /* or use hex: #5f9ea0 */
    font-weight: bold;
}
/* Center the login container */
.login-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 80vh;
    padding: 1rem;
    background-color: #f5f5f5;
}

/* The login form box */
.login-form {
    background-color: #fff;
    padding: 2rem;
    border-radius: 8px;
    width: 100%;
    max-width: 400px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

    /* Heading */
    .login-form h3 {
        text-align: center;
        margin-bottom: 1.5rem;
        color: #333;
    }

/* Input group styling */
.input-group {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    border: 1px solid #ccc;
    border-radius: 4px;
    padding: 0.5rem;
    background-color: #fafafa;
}

    .input-group i {
        margin-right: 0.5rem;
        color: #888;
    }

/* Input field styling */
.input-field {
    flex: 1;
    border: none;
    outline: none;
    background-color: transparent;
    font-size: 1rem;
    padding: 0.25rem;
}

/* Submit button */
button[type="submit"] {
    padding: 0.75rem;
    font-size: 1rem;
    border: none;
    border-radius: 4px;
    background-color: #007bff;
    color: white;
    cursor: pointer;
    transition: background-color 0.2s ease-in-out;
}

    button[type="submit"]:hover {
        background-color: #0056b3;
    }

/* Error message */
.alert.alert-danger,
.error-message {
    color: #b00020;
    background-color: #fdd;
    padding: 0.75rem;
    margin-bottom: 1rem;
    border: 1px solid #f5c2c7;
    border-radius: 4px;
}
.dashboard-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh; /* Full screen height */
    background-color: #f5f5f5; /* Optional: light background */
    padding: 1rem;
    box-sizing: border-box;
}

.dashboard-content {
    text-align: center;
    background-color: #fff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}

.dashboard-logo {
    max-width: 200px;
    margin-bottom: 1.5rem;
}

.dashboard-details {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #555;
}
