/* mobile.css */
/* mobile.css */
@media screen and (max-width: 768px) {
    body {
        margin: 0;
        padding: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        height: 100vh;
        background: var(--colors-background-bg-primary);
    }

.section {
    display: flex;
    flex-direction: column;
    /* align-items: center; */
    justify-content: center;
    gap: 20px;
    width: 100%;
    padding: 0;
    box-sizing: border-box;
    /* background: url('./public/section@3x.png') top center no-repeat; */
    background-size: cover;
    min-height: 100vh;
    margin-top: 40px;
}

    .login-form-container {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 20px;
        width: 90%;
        max-width: 400px;
    }

.footer {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    padding: 0;
    margin: 0 auto;
    /* position: fixed; */
    /* bottom: 10px; */
    /* width: 100%; */
    box-sizing: border-box;
    font-size: var(--text-sm-regular-size);
}

.page-description {
    position: fixed !important;
    bottom: 10px;
    right:0;
    /* margin-bottom: 40px; */
    font-size: var(--text-sm-regular-size);
    line-height: 20px;
    text-align: center;
    color: var(--colors-text-text-tertiary-600);
}
    .content1 {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 20px;
        width: 100%;
    }

    .actions {
        width: 100%;
        text-align: center;
    }

    .options {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 10px;
        width: 100%;
    }
    .form-header {
    align-self: center;
    flex-direction: row;
    justify-content: flex-end;
}

.section1 {
    padding-top: var(--padding-17xl);
    padding-bottom: var(--padding-17xl);
    box-sizing: border-box;
    position: absolute;
    top: -130px;
    height: 350px;
}
  .medInstitution{
   font-size: 28px;
    margin: 0; 
   }
   
   .social-button {
    display: none;
    padding: var(--padding-5xs) var(--padding-xl);
}
}




@media screen and (max-width: 400px) {
    body {
        margin: 0;
        padding: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        min-height: 100vh;
        background: var(--colors-background-bg-primary);
        box-sizing: border-box;
    }

    .section {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 100%;
        padding: 0;
        margin: 0;
        background: url('./public/section@3x.png') top center no-repeat;
        background-size: cover;
        height: 100vh;
        box-sizing: border-box;
    }

    .login-form-container {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 16px;
        width: 90%;
        max-width: 320px;
        margin: 0 auto;
    }

    .title {
        font-size: 18px;
        text-align: center;
        line-height: 24px;
    }

    .supporting-text {
        font-size: 14px;
        line-height: 20px;
        text-align: center;
        color: var(--colors-text-text-tertiary-600);
    }

    .form {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 12px;
        width: 100%;
    }

    .input {
        width: 100%;
        padding: 12px;
        font-size: 14px;
    }

    .actions {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 12px;
    }

 



    .social-button-groups {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 8px;
        width: 100%;
    }

    .social-button {
        width: 90%;
        max-width: 320px;
        padding: 10px;
        font-size: 14px;
    }
    
    
    
    .form-header {
    align-self: center;
    flex-direction: row;
    justify-content: flex-end;
}
    
    
}
