/* General Body Styling */
body {
    font-family: Arial, sans-serif;
    background-color: #f0f0f0;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

/* Login Container Styling */
.login-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    width: 40%;
    max-width: 400px;
    position: relative;
}

/* Logo Styling */
.logo h1 {
    text-align: center;
    font-size: 48px;
    margin-bottom: 20px;
}

.blue-text {
    color: #007bff; /* Blue color */
}

.black-box {
    color: #fff;
    background-color: #333; /* Black background */
    padding: 5px 10px;
    border-radius: 4px;
}

/* Form Styling */
h2 {
    text-align: center;
    margin-bottom: 20px;
    font-size: 18px;
    color: #333;
}

label {
    display: block;
    margin-bottom: 5px;
    font-size: 14px;
    color: #555;
}

input {
    width: 100%;
    padding: 12px; /* Increased padding for better spacing */
    border: 1px solid #ccc;
    border-radius: 5px;
    margin-bottom: 15px;
    box-sizing: border-box; /* Ensure input and button align */
}

/* Login Button Styling */
button.login-btn {
    background-color: #007bff; /* Blue */
    color: white;
    padding: 12px; /* Same as input fields */
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    width: 100%; /* Full width to align with inputs */
    box-sizing: border-box;
}

button.login-btn:hover {
    background-color: #0056b3; /* Darker blue for hover effect */
}

/* Back Button Styling */
.back-btn-container {
    margin-top: 15px;
}

.back-btn {
    text-decoration: none;
    color: #007bff; /* Blue color for the link */
    font-size: 14px;
    font-weight: bold;
    text-align: center;
}

.back-btn:hover {
    text-decoration: underline;
}

