
.exact-login-container {
    max-width: 350px;
    margin: 50px auto;
    padding: 0;
    background: transparent;
    font-family: Arial, sans-serif;
}

.exact-login-field {
    margin-bottom: 20px;
}

.exact-input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #d1d1d1;
    border-radius: 4px;
    box-sizing: border-box;
    font-size: 16px;
    color: #333;
    background: #fff;
    box-shadow: none;
    outline: none;
}

.exact-input:focus {
    border-color: #a0a0a0;
}

.exact-login-submit {
    margin: 25px 0;
}

.exact-button {
    width: 100%;
    padding: 12px;
    background: #2a7de1;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: normal;
    cursor: pointer;
    transition: background 0.3s;
}

.exact-button:hover {
    background: #1a6bc8;
}

.exact-login-links {
    text-align: center;
    margin-top: 20px;
    font-size: 14px;
    color: #666;
}

.exact-login-links a {
    color: #2a7de1;
    text-decoration: none;
}

.exact-login-links a:hover {
    text-decoration: underline;
}

/* Error message styling */
#login_error {
    color: #dc3232;
    font-size: 14px;
    margin-bottom: 20px;
    padding: 10px;
    background: #ffebeb;
    border: 1px solid #dc3232;
    border-radius: 4px;
}
