/* style.css */
body {
    margin: 0;
    padding: 0;
    font-family: 'Roboto', sans-serif;
    background-color: #f9f9f9; /* Light background for a clean look */
    color: #333; /* Dark text for contrast */
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}


/* login styling */

.login-panel {
    background-color: #ffffff; /* White panel for a clean, modern look */
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
    border-radius: 8px;
    padding: 20px 30px;
    width: 300px; /* Fixed width for consistency */
    text-align: center;
}

.login-logo {
    width: 300px; /* Restrict logo size for balance */
    height: auto;
    margin-bottom: 20px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

form {
    display: flex;
    flex-direction: column;
    align-items: center;
}

form p {
    width: 100%; /* Full width of the form container */
    margin: 10px 0;
}

input[type="text"],
input[type="password"] {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 14px;
    transition: all 0.3s ease;
}

input[type="text"]:focus,
input[type="password"]:focus {
    border-color: #0078d7; /* Accent color for focus */
    box-shadow: 0 0 5px rgba(0, 120, 215, 0.5);
    outline: none;
}

.login_btn {
    background-color: #0078d7; /* Primary button color */
    color: white; /* Button text color */
    padding: 10px 20px;
    font-size: 14px;
    font-weight: bold;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    width: 100%; /* Full-width button for alignment */
}

.login_btn:hover {
    background-color: #005bb5; /* Darker shade on hover */
}

.login_btn:active {
    background-color: #003f8a; /* Even darker shade for active state */
}

/* end of login styling */


/* responsive layout */

@media (max-width: 480px) {
    .login-panel {
        width: 90%; /* Adjust panel width for smaller screens */
    }
}
