/* ================================
   Figtree local fonts
   ================================ */
@font-face {
  font-family: 'Figtree';
  src: url('/resources/fonts/Figtree/Figtree-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Figtree';
  src: url('/resources/fonts/Figtree/Figtree-SemiBold.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}


body {
    font-family: 'Figtree', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #f5f5f5;
}

form {
    padding: 30px;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 400px;
}

.form-group {
    margin-bottom: 20px;
}

label {
    display: block;
    margin-bottom: 10px;
    font-weight: 500;
    color: #30363b;
}

input[type="text"],
input[type="password"] {
    width: 100%;
    padding: 15px;
    border: 2px solid #ddd;
    border-radius: 6px;
    box-sizing: border-box;
    transition: border-color 0.3s;
}

input[type="text"]:focus,
input[type="password"]:focus {
    border-color: #30363b;
    outline: none;
}

button {
    font-family: 'Figtree', sans-serif;
    width: 100%;
    padding: 15px;
    border: none;
    border-radius: 8px;
    background-color: #506a85;
    color: #fff;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s, color 0.3s;
}

button:hover,
button:focus {
    background-color: #fffc04;
    color: #30363b;
    outline: none;
}

button .plane {
    display: inline-block;
    transition: transform 0.5s ease;
}

button:hover .plane {
    transform: translateX(100px);
}

img.logo {
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 20px;
    width: 75%;
    max-width: 250px;
}

.login-notice,
.login-info {
    text-align: center;
    margin-top: 20px;
    margin-bottom: 20px;
}

.login-notice p,
.login-info p {
    color: #30363b;
    font-size: 15px;
    font-weight: 600;
}

.error {
    color: #ff4242;
    margin-bottom: 20px;
    padding: 10px;
    background-color: #ffecec;
    border-radius: 4px;
    border: 1px solid #ff4242;
    text-align: center;
}

.footer {
    text-align: center;
    padding: 2px 0;
    background-color: #30363b;
    color: white;
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    font-size: 14px;
}