.movie-auth-container {
    max-width: 400px;
    margin: 40px auto;
    padding: 20px;
}

.movie-auth-box {
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 30px;
}

.auth-title {
    text-align: center;
    margin-bottom: 30px;
    font-size: 24px;
}

.auth-messages {
    margin-bottom: 20px;
}

.auth-message {
    padding: 10px;
    border-radius: 4px;
    margin-bottom: 10px;
}

.auth-message.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.auth-message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    color: #333;
}

.auth-input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
}

.auth-input:focus {
    outline: none;
    border-color: #2271b1;
}

.auth-button {
    width: 100%;
    padding: 12px;
    background: #2271b1;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    position: relative;
}

.auth-button:hover {
    background: #135e96;
}

.button-loader {
    display: none;
    justify-content: center;
    gap: 4px;
}

.loader-dot {
    width: 6px;
    height: 6px;
    background: white;
    border-radius: 50%;
    animation: bounce 0.5s infinite alternate;
}

@keyframes bounce {
    from { transform: translateY(0); }
    to { transform: translateY(-4px); }
}

.auth-links {
    margin-top: 20px;
    text-align: center;
}

.auth-links a {
    color: #2271b1;
    text-decoration: none;
}

.auth-links a:hover {
    text-decoration: underline;
}