:root{
    --primary-color:#007AFC
}

.login-container{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
    flex: 1;
}

.login-container p{
    font-weight: 500;
}

.login-container .aid-logo{
    width: 50%;
    height: auto;
}

.signin_btn{
    color: #fff;
    text-align: center;
    background-color: var(--primary-color);
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-decoration: none;
    height: 30px;
    width: 60%;
    border-radius: 5px;
}

.signin_btn span{
    background-color: #fff;
    padding: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.signin_btn img{
    height: 20px;
    width: 20px;
}

/* Responsive design */

@media screen and (max-width: 428px) {

    .login-container .aid-logo{
        width: 60%;
    }

    .signin_btn{
        width: 90%;
    }
  }