@import url('https://fonts.googleapis.com/css2?family=Noto+Sans:ital,wght@0,100..900;1,100..900&display=swap');

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    font-family: "Noto Sans", sans-serif;
    background-color: #f0f4f9;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 80vh;
}

.login-box {
    background: #ffffff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.12);
    width: 100%;
    max-width: 400px;
}

.login-title {
    color: #07569e;
    font-size: 22px;
    margin-bottom: 30px;
    margin-top: 0;
    text-align: center;
}

.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    font-weight: bold;
    color: #07569e;
    margin-bottom: 6px;
    font-size: 0.9em;
}

.input-field {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 15px;
    box-sizing: border-box;
    font-family: "Noto Sans", sans-serif;
}

.input-field:focus {
    outline: none;
    border-color: #07569e;
    box-shadow: 0 0 0 2px rgba(7,86,158,0.15);
}

.btn {
    background: #07569e;
    color: white;
    padding: 12px;
    border: none;
    cursor: pointer;
    width: 100%;
    font-size: 16px;
    font-weight: bold;
    margin-top: 10px;
    border-radius: 5px;
    font-family: "Noto Sans", sans-serif;
}

.btn:hover {
    background: #05407a;
}

.alert-error {
    padding: 12px;
    margin-bottom: 20px;
    background-color: #ffebee;
    border-left: 4px solid #c62828;
    color: #c62828;
    border-radius: 4px;
    font-size: 0.9em;
}
