/* for Separation header and footer when the datas are empty in between them */
body{
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif !important;
}
.SubmitBtn {
    color: #ffffff;
    background-color: var(--blueColor);
    border: 2px solid var(--blueColor);
    width: 150px !important;
    height: 50px !important;
    border-radius: 50px;
    font-size: 14px !important;
    text-align: center;
    font-weight: 500;
    transition: all 0.3s ease;
    margin-top: 20px !important;
    position: relative;
    display: flex !important;
    position: relative;
    justify-content: center;
    align-items: center;
    gap: 5px;
    &:hover{
        color: var(--blueColor);
        background: white;
    }
}
.footer{
    margin-top: auto;
}