body{
    overflow-y: hidden;
    margin: 0;
    position: relative;
}

.title {
    width: 30%;
    padding-top: 12%;
}

.subTitle {
    width: 100%;
    font-size: 20px;
    text-align: center;
}

input{
    width: 30%;
    height: 30px;
    font-size: 15px;
    border: 1px solid var(--color-button);
    border-radius: 10px;
    background-color: white;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    margin-bottom: 10px;
    padding: 2px 0 2px 10px;
}

        
.loginButton{
    width: 180px;
    height: 40px;
    border: 0px;
    margin: 10px;
    color: white;
    font-size: 20px;
    text-align: center;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    border-radius: 10px;
    background-color: var(--color-button);
    margin-top: 10px;
 }

.loginButton:hover {
    background-color: var(--color-hover);
     transition: 0.3s;
}

.line-top {
    position: sticky;
    width: 100%;
    height: 12px;
    top: 7%;
    background: var(--color-button);
}


.line-bottom {
    position: sticky;
    bottom: 7%;
    width: 100%;
    height: 12px;
    background: var(--color-button);
    margin-top: 12%;
}

header {
    text-align: center;
}

.container {
    text-align: center;
}

.element-style {
    color: red;
    text-align: center;
}


.button-container {
    text-align: center;
    margin-top: 20px;
}

.backButton {
    width: 180px;
    height: 40px;
    border: 0px;
    margin: 10px;
    color: white;
    font-size: 20px;
    text-align: center;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    border-radius: 10px;
    background-color: #CFCECE;
    margin-top: 10px;
}

.backButton2 {
    width: 140px;
    height: 30px;
    border: 0;
    color: white;
    font-size: 15px;
    text-align: center;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    border-radius: 10px;
    background-color: var(--color-button);
}

.backButton:hover, .backButton2:hover {
    background-color: var(--color-hover);
    transition: 0.3s;
}

@media only screen and (max-width: 768px) {
    .title {
        width: 40%;
        padding-top: 15%;
    }
    
    input{
        width: 40%;
        margin-bottom: 20px;
    }
     
    .loginButton:hover {
        background-color: var(--color-hover);
        transition: 0.3s;
    }

    .line-bottom {
        position: sticky;
        bottom: 7%;
        width: 100%;
        height: 12px;
        background: var(--color-button);
        margin-top: 70%;
    }
    
    .container {
        margin-top: 30px;
    }
}

@media only screen and (max-width: 425px) {
    .title {
        width: 55%;
        padding-top: 25%;
    }
    
    .subTitle {
        width: 100%;
        font-size: 20px;
        text-align: center;
    }
    
    input{
        width: 60%;
    }
    
    .loginButton:hover {
        background-color: var(--color-hover);
        transition: 0.3s;
    }

    .line-bottom {
        position: sticky;
        bottom: 7%;
        width: 100%;
        height: 12px;
        background: var(--color-button);
        margin-top: 70%;
    }
}

@media only screen and (max-width: 375px) {
    .title {
        width: 60%;
        padding-top: 20%;
    }
    
    input{
        width: 70%;
    }
    
    .loginButton:hover {
        background-color: var(--color-hover);
        transition: 0.3s;
    }

    .line-bottom {
        position: sticky;
        bottom: 7%;
        width: 100%;
        height: 12px;
        background: var(--color-button);
        margin-top: 70%;
    }
}

@media only screen and (max-width: 325px) {
    .title {
        width: 70%;
        padding-top: 20%;
    }
   
    input{
        width: 70%;
    }
    
    .line-bottom {
        position: sticky;
        bottom: 7%;
        width: 100%;
        height: 12px;
        background: var(--color-button);
        margin-top: 70%;
    }
}