.loginForm{
    margin-top: 2%;
    transform: scale(1.2);
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.loginForm label {
    font-weight: bold;
    display: block;
    margin: 10px 0 5px;
}

.loginForm input {
    width: 400px;
    max-width: 100%;
    padding: 10px;
    margin: 0 auto;
    display: block;
    font-size: 16px;
    background-color: transparent;
    border: 2px solid #f4f4f4;
    border-radius: 5px;
    color: antiquewhite;
}

.button{
    width: 100%;
    display: flex;
    justify-content: center;
}

.buttonLogin{
    margin-top: 6%;
    padding: 12px 30px;
    background-color: antiquewhite;
    color: #000;
    font-size: 16px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.buttonLogin:hover{
    background-color: #ffb366;
}

.noAccount {
    text-align: center;
    margin-top: 20px;
}

.noAccount a, .forgotPass a {
    display: inline-block;
    margin-top: 5px;
    color: #6a5acd;
    text-decoration: none;
    font-weight: bold;
}

.noAccount a:hover, .forgotPass a:hover {
    text-decoration: underline;
}

.forgotPass {
    text-align: center;
}

h1 {
    margin-top: 0;
    margin-bottom: 50px;
}

h2{
    margin-top: 0;
}

@media screen and (max-width: 768px) {
    .loginForm {
        transform: scale(1);
        margin-top: 10%;
        padding: 0 20px;
    }

    .loginForm input {
        width: 100%;
        box-sizing: border-box;
    }

    h1 {
        font-size: 24px;
        padding: 0 15px;
        text-align: center;
    }

    .buttonLogin {
        width: 100%;
        max-width: 200px;
    }

    .mainContent{
        transform: translateY(80px);
    }

    .message{
        margin-bottom: -10%;
        text-align: center;
    }

}

@media screen and (max-width: 480px) {
    .loginForm {
        margin-top: 15%;
    }

    h1 {
        font-size: 20px;
    }

    .noAccount {
        margin-top: 30px;
    }
}