/* styles.css */
body {
    font-family: 'Raleway', sans-serif;
    color: #333;
    background-color: #f0ece3;
    margin: 0;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
}

h2 {
    color: #002f6c;
    text-align: center;
    margin-bottom: 20px;
}

.login-box {
    background-color: #ffffff;
    width: 350px;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.input-section {
    margin-bottom: 30px;
    margin-right: 25px;
    margin-left: 10px;
}

.input-section label {
    display: block;
    margin-bottom: 15px;
    font-weight: bold;
}

.input-section input {
    width: 100%;
    padding: 10px;
    border: 2px solid #ccc;
    border-radius: 4px;
    margin-bottom: 15px;
}

.proceed-button {
    text-align: center;
}

.proceed-button button {
    padding: 12px 40px;
    background-color: #00509e;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 1em;
    cursor: pointer;
    transition: background-color 0.3s;
    width: 80%;
}

.proceed-button button:hover {
    background-color: #003f87;
}

.error-banner {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #dc3545;
    color: white;
    padding: 60px 100px;
    border-radius: 10px;
    font-size: 1.5em;
    display: none;
    z-index: 1000;
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
    text-align: center;
}

@media (max-width: 600px) {
    .login-box {
        width: 90%;
        padding: 20px;
    }
    .proceed-button button {
        width: 100%;
    }
}