.album-form {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    width: 80%;
    margin: 0 auto;
    padding: 2rem;
    background-color: var(--faded-purple);
    background-color: var(--smooth-purple);
    box-shadow: 0 4px 12px var(--byte-black);
}

.album-form form {
    display: flex;
    flex-direction: row;
    gap: 2rem;
    width: 100%;
    flex-wrap: wrap;
}

.album-form input {
    font-size: 1.3rem;
}

.album-form button {
    font-size: 1.3rem;
}

.album-form a {
    text-decoration: none;
    color: inherit;
    font: inherit;
    transition: color 0.3s ease;
}

.album-form a:hover {
    color: var(--smooth-purple);
}

.form-left, .form-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-left {
    text-align: center;
}

.album-image-preview img {
    width: 20rem;
    height: 20rem;;
    object-fit: cover;
    background-color: var(--paper-yellow);
    padding: 2rem;
}

.login-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 80%;
    margin: 0 auto;
    align-items: center;
    text-align: center;
    padding: 2rem;
    background-color: var(--faded-purple);
    background-color: var(--smooth-purple);
    box-shadow: 0 4px 12px var(--byte-black);
}

.login-form form {
    display: flex;
    flex-direction: row;
    gap: 2rem;
    flex-wrap: wrap;
}

.login-form input {
    font-size: 1.3rem;
}

.login-form button {
    font-size: 1.3rem;
}

@media screen and (max-width: 500px) { 
    .album-image-preview img {
        width: 15rem;
        height: 15rem;
    }

}
