:root {
    --primary-color: #ff6200;
    --background-color: #f0f0f0;
    --text-color: #333;
    --input-border: #ddd;
    --success-color: #4CAF50;
    --error-color: #f44336;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background: var(--background-color);
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    line-height: 1.6;
}

.container {
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 450px;
    padding: 30px;
    text-align: center;
}

.logo {
    margin-bottom: 25px;
    display: inline-block;
}

.logo svg {
    width: 120px;
    height: 120px;
}

.form-group {
    position: relative;
    margin-bottom: 15px;
}

.form-group input, 
.form-group select {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--input-border);
    border-radius: 5px;
    font-size: 16px;
}

.password-toggle {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    font-size: 18px;
    color: #666;
    z-index: 10;
}

.form-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 15px 0;
    font-size: 14px;
}

.remember-me {
    display: flex;
    align-items: center;
    gap: 8px;
}

.remember-me input {
    margin: 0;
    width: auto;
}

.btn {
    width: 100%;
    padding: 12px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 18px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.btn:hover {
    background: #e55500;
}

.form-switch {
    margin-top: 20px;
    font-size: 14px;
}

.form-switch a {
    color: var(--primary-color);
    text-decoration: none;
    margin-left: 5px;
}

.message {
    font-size: 14px;
    margin-bottom: 10px;
    display: none;
}

.error-message {
    color: var(--error-color);
}

.success-message {
    color: var(--success-color);
}

#signinForm, 
#recoveryForm {
    display: none;
}