:root {
    --primary: #16a087;
    --primary-hover: #12806c;
    --text-primary: #333;
    --text-secondary: #666;
    --border-color: #ccc;
    --bg-color: #ffffff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    transition: none !important;
    animation: none !important;
}

body {
    font-family: Arial, sans-serif;
    background: var(--bg-color);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.container {
    width: 100%;
    max-width: 400px;
}

.login-wrapper {
    background: transparent;
    padding: 20px;
    width: 100%;
}

.header {
    text-align: center;
    margin-bottom: 30px;
}

.logo {
    margin-bottom: 15px;
}

.header h1 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 5px;
}

.subtitle {
    font-size: 13px;
    color: var(--text-secondary);
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    font-size: 13px;
    font-weight: bold;
    color: var(--text-primary);
    margin-bottom: 5px;
}

.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.input-wrapper input {
    width: 100%;
    padding: 10px;
    font-size: 14px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    background: #fff;
    color: var(--text-primary);
    font-family: inherit;
}

.input-wrapper input:focus {
    outline: none;
    border-color: #888;
}

.input-icon {
    display: none;
}

.input-wrapper input {
    padding-left: 10px !important;
}

.toggle-password {
    position: absolute;
    right: 10px;
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
}

.error-message {
    font-size: 12px;
    color: #cc0000;
    margin-top: 4px;
    min-height: 15px;
}

.btn-primary {
    width: 100%;
    padding: 12px;
    font-size: 14px;
    font-weight: bold;
    color: white;
    background: var(--primary);
    border: 1px solid var(--primary);
    border-radius: 4px;
    cursor: pointer;
    margin-top: 10px;
}

.btn-primary:hover {
    background: var(--primary-hover);
}

.btn-primary:active {
    background: #0e6354;
}

.btn-primary:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

.btn-primary:disabled {
    opacity: 0.5;
    cursor: default;
}

.spinner {
    width: 16px;
    height: 16px;
    border: 2px solid #fff;
    border-top: 2px solid transparent;
    border-radius: 50%;
    display: inline-block;
}

.links {
    text-align: center;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.link {
    color: #444;
    text-decoration: underline;
    font-size: 13px;
}

.link:hover {
    color: #000;
}

.success-indicator {
    text-align: center;
    margin-bottom: 20px;
}

.success-text {
    font-size: 14px;
    font-weight: bold;
    color: green;
}

.checkmark {
    display: none;
}

.official-link {
    text-align: center;
    margin-top: 30px;
}

.official-link a {
    color: #666;
    text-decoration: none;
    font-size: 12px;
    border-bottom: 1px solid #ccc;
}

@media (max-width: 480px) {
    .login-wrapper {
        padding: 10px;
    }
}