.login-form {
    background-color: rgba(0, 0, 0, 0.2);
    padding: 2rem;
    border-radius: 0.5rem;
    border: 1px solid rgb(75, 85, 99);
    width: 100%;
    max-width: 400px;
}

.form-input {
    width: 100%;
    padding: 0.75rem;
    margin: 0.5rem 0;
    background-color: rgba(0, 0, 0, 0.2);
    border: 1px solid rgb(75, 85, 99);
    border-radius: 0.25rem;
    color: white;
}

.form-input:focus {
    outline: none;
    border-color: hsl(246, 34%, 52%);
}

.form-input:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.login-button {
    width: 100%;
    padding: 0.75rem;
    background-color: hsl(246, 34%, 42%);
    color: white;
    border: none;
    border-radius: 0.25rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
    min-height: 48px;
}

.login-button:hover:not(:disabled) {
    background-color: hsl(246, 34%, 52%);
}

.login-button:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.logo-container {
    margin-bottom: 2rem;
    text-align: center;
}

.logo-container img {
    max-width: 200px;
    height: auto;
    width: 100px;
    height: 100px;
}
