﻿
body {
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', sans-serif;
    background-color: #e2e7ec;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    color: #3a4148;
}

.login-container {
    background-color: #ffffff;
    padding: 40px 32px;
    border-radius: 10px;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.05);
    width: 100%;
    max-width: 420px;
}

    .login-container h2 {
        text-align: center;
        margin-bottom: 32px;
        font-size: 1.6rem;
        color: #5c7d91;
        font-weight: 700;
    }

.form-group {
    margin-bottom: 20px;
}

label {
    display: block;
    font-weight: 600;
    margin-bottom: 6px;
}

input[type="text"],
input[type="password"] {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 1rem;
    background-color: #f9fafb;
    box-sizing: border-box;
}

.btn-primary {
    width: 100%;
    padding: 12px;
    background-color: #5c7d91;
    color: #fff;
    font-weight: 600;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.25s ease;
}

    .btn-primary:hover {
        background-color: #4a6779;
    }

.footer-text {
    text-align: center;
    margin-top: 24px;
    font-size: 0.9rem;
    color: #7a848d;
}

.styleInput::placeholder {
    font-family: 'Courier New', Courier, monospace;
    font-style: italic;
    font-size: 12px;
    color: gray;
}

.styleInput {
    background: #ffffff;
}

