.auth-container {
    background: url("../img/auth/middle.png") repeat-y bottom left;
    width: 314px;
    min-height: 180px;
    margin-bottom: 9px;
    padding-bottom: 40px;
    margin-left: 30px;
    margin-top: 35px;
}

.error-message {
    background: #ffebee;
    border: 1px solid #f44336;
    color: #c62828;
    padding: 10px;
    margin: 10px 0;
    border-radius: 4px;
    text-align: center;
}

.success-message {
    padding: 10px;
    margin: 10px 0;
    border-radius: 4px;
    text-align: center;
}

.user-info {
    background: #f5f5f5;
    padding: 20px;
    border-radius: 8px;
    margin: 20px 0;
}

.info-item {
    margin: 10px 0;
    padding: 8px;
    background: white;
    border-radius: 4px;
}

.user-actions {
    margin: 20px 0;
}

.action-button {
    background: #4CAF50;
    color: white;
    border: none;
    padding: 10px 20px;
    margin: 5px;
    border-radius: 4px;
    cursor: pointer;
}

.action-button.logout {
    background: #f44336;
}

.nav-menu-item {
    color: white;
    text-decoration: none;
    margin: 0 15px;
    padding: 5px 10px;
}

.nav-menu-item:hover {
    background: rgba(255,255,255,0.1);
    border-radius: 4px;
}

.auth-header {
    background: url("../img/auth/top.png") no-repeat top center;
    height: 127px;
    width: 314px;
}

.auth-form-container {
    padding: 0 0 0 20px;
    margin-top: -39px;
}

.auth-form {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-field {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.form-field label {
    font-size: 12px;
    font-weight: bold;
    color: #8b4513;
    margin-left: 30px;
}

.form-input {
    display: block;
    width: 196px;
    padding: 2px 0;
    background-color: #fbeeda;
    border-top: 1px solid #a07c66;
    border-left: 1px solid #a07c66;
    padding: 5px;
    border: 1px solid #8b4513;
    border-radius: 3px;
    background: rgba(255, 255, 255, 0.9);
    font-size: 12px;
    height: 25px;
    margin-left: 30px;
}

.submit-button {
    width: 133px;
    margin-left: 60px;
    height: 30px;
    font-size: 0;
    border: 0;
    margin-right: 47px;
    float: right;
    cursor: pointer;
    background: url("../img/auth/button.gif") no-repeat top left;
}

.submit-button:hover {
    opacity: 0.9;
}