* {
    box-sizing: border-box;
}

body {
    margin: 0;
    min-height: 100vh;
    font-family: Arial, Helvetica, sans-serif;
    background: #ffffff;
    color: #1f1f1f;
}

.page-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.login-container {
    width: 100%;
    max-width: 420px;
}

.login-box {
    background: #ffffff;
    border: 1px solid #dddddd;
    border-radius: 12px;
    padding: 32px 24px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
}

.logo-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 8px;
}

.login-logo {
    width: 200px;
    height: 200px;
    object-fit: contain;
}

h1 {
    margin: 0 0 8px;
    font-size: 28px;
    text-align: center;
}

.subtitle,
.helper,
.logged-in-info,
.copyright {
    text-align: center;
    color: #666666;
}

.subtitle {
    margin: 0 0 20px;
    font-size: 14px;
}

.logged-in-info {
    margin: 0 0 20px;
    padding: 10px 12px;
    border-radius: 8px;
    background: #f7f7f7;
    font-size: 14px;
}

.form-group {
    margin-bottom: 16px;
}

label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    font-weight: 600;
}

input {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #cfcfcf;
    border-radius: 8px;
    font-size: 14px;
    outline: none;
    background: #ffffff;
}

input:focus {
    border-color: #8c8c8c;
}

.button-group {
    display: grid;
    gap: 12px;
    margin-top: 24px;
}

button {
    width: 100%;
    padding: 12px 14px;
    border-radius: 8px;
    font-size: 14px;
    cursor: pointer;
}

.btn-login {
    border: 1px solid #222222;
    background: #222222;
    color: #ffffff;
}

.btn-forgot {
    border: 1px solid #cccccc;
    background: #ffffff;
    color: #222222;
}

.helper {
    margin-top: 18px;
    font-size: 13px;
    line-height: 1.5;
}

.copyright {
    margin-top: 16px;
    font-size: 12px;
}

.password-wrapper {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
}

.password-wrapper input {
    width: 100%;
    padding-right: 42px !important; /* Space for eye icon */
}

.toggle-password {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: transparent !important;
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
    cursor: pointer;
    color: #64748b;
    padding: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
    height: auto !important;
    width: auto !important;
}

.toggle-password:hover {
    color: #0f172a;
}

