@font-face {
    font-family: 'Poppins';
    src: url('/fonts/poppins/Poppins-Regular.ttf');
}

* {
    box-sizing: border-box;
    font-family: 'Poppins', Arial, sans-serif;
}



html, body {
    margin: 0;
    padding: 0;
    height: 100%;
}

body {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: white;
}

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

.logo {
    display: flex;
    justify-content: center;
    margin-bottom: 24px;
}

.form-label {
    margin-bottom: 16px;
}

.form-label label {
    display: block;
    margin-bottom: 6px;
    font-size: 14px;
    font-family: 'Poppins';
}

.my-input {
    width: 100%;
    padding: 10px;
    border-radius: 8px;
    border: 1px solid #ccc;
    outline: none;
}

.my-input:focus {
    border-color: #5aa88f;
}

.btn-login {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 8px;
    background: #4fae95;
    color: #fff;
    font-size: 15px;
    cursor: pointer;
}

.btn-login:hover {
    background: #439d86;
}

.error-text {
    color: red;
    font-size: 13px;
    margin-top: 4px;
}

.alert {
    background: #f8d7da;
    color: #842029;
    padding: 10px;
    border-radius: 6px;
    margin-bottom: 16px;
}
