/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Segoe UI", Tahoma, Arial, sans-serif;
}

/* Page background */
body {
    min-height: 100vh;
    background: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 100px;;
}

/* Login card */
.login-container {
    width: 340px;
    background: #fff;
    padding: 40px 20px;
    border-radius: 8px;
    box-shadow:0 2px 12px 0 rgb(0 0 0 / 18%);
    text-align: center;
}

/* Logo */
.login-logo {
    margin-bottom: 50px;
}

    .login-logo img {
        max-width: 200px;
    }

/* Inputs */
.login-input {
    width: 100%;
    height: 27px;
    margin-bottom: 40px;
    padding: 0 12px;
    border-radius: 4px;
    border: 1.5px solid #3b82f6;
    font-size: 14px;
    outline: none;
    transition: all 0.2s ease;
}

.login-input::placeholder{
  font-size: 10px;
}

    .login-input::placeholder {
        color: #9ca3af;
    }

    .login-input:focus {
        border-color: #2563eb;
        box-shadow: 0 0 0 2px rgba(37, 99, 235, 0.15);
    }

/* Login button */
.login-btn {
    width: 100%;
    height: 46px;
    margin-top: 10px;
	margin-bottom: 35px;
    background: #e9a23b;
    border: none;
    border-radius: 4px;
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.1s ease;
}

    .login-btn:hover {
        background: #dd9326;
    }

    .login-btn:active {
        transform: scale(0.98);
    }

    /* Lock icon inside button (optional) */
    .login-btn i {
        margin-right: 6px;
    }

/* Version text */
.login-version {
    width: 100%;
    text-align: center;
    font-size: 11px;
    color: #000;
    margin-top: 20px;
}
/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Segoe UI", Tahoma, Arial, sans-serif;
}



