* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Segoe UI", Arial, sans-serif;
}

body {
    background: #f4f6f9;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.login-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
}

.login-card {
    background: #ffffff;
    width: 380px;
    padding: 35px 30px;
    border-radius: 14px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    text-align: center;
}

.logo-area img {
    max-width: 90px;
    margin-bottom: 10px;
}

.logo-area h1 {
    font-size: 26px;
    color: #0b3d2e;
    margin-bottom: 5px;
}

.logo-area p {
    font-size: 14px;
    color: #666;
    margin-bottom: 25px;
}

.input-group {
    text-align: left;
    margin-bottom: 18px;
}

.input-group label {
    font-size: 14px;
    color: #333;
    display: block;
    margin-bottom: 6px;
}

.input-group input {
    width: 100%;
    padding: 11px 12px;
    border-radius: 6px;
    border: 1px solid #ccd3da;
    font-size: 14px;
    background: #f7faff;
    transition: 0.2s;
}

.input-group input:focus {
    outline: none;
    border-color: #0b3d2e;
    background: #ffffff;
}

.btn-login {
    width: 100%;
    padding: 12px;
    background: #f28c28;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
    margin-top: 10px;
}

.btn-login:hover {
    background: #d9771f;
}

.footer {
    margin-top: 20px;
    font-size: 12px;
    color: #777;
}
