:root {
    --normal-txt: 'Sans-serif', Arial;
}

body{
    margin: 0;
    padding: 0;
    display: flex;
    height: 100vh;
    width: 100%;
    background-image: url('../images/workspace-log-in-page.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-position-x: right;
    background-position-y: (center + 5px);
    font-family: var(--normal-txt);
    overflow: auto;
}

.note{
    position: fixed;
    background-color: rgba(255, 231, 200, 0.797);
    padding: 15px;
    border-left: 12px solid rgba(255, 207, 145, 0.992);
    border-radius: 10px;
    right: 10px;
    top: 10px;
    backdrop-filter: blur(5px);
}

.left{
    width: 50%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition-duration: 1s;
}

.sign-in-pannel{
    box-shadow: rgba(0, 0, 0, 0.4) 0px 30px 90px;
    border-radius: 25px;
    width: 60%;
    height: 40vh;
    max-height: 500px;
    min-height: 300px;
    font-size: 95%;
    text-align: center;
    color: rgb(67, 13, 78);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 30px;
    margin-top:50px;
    margin-bottom: 20px;
    transition-duration: 1s;
}

.sign-in-pannel .method{
    background-color: rgb(129, 114, 136);
    display: flex;
    padding: 7px;
    border-radius: 10px;
    color: rgb(255, 255, 255);
    box-shadow: rgba(0, 0, 0, 0.17) 0px -23px 25px 0px inset, rgba(0, 0, 0, 0.15) 0px -36px 30px 0px inset, rgba(0, 0, 0, 0.1) 0px -79px 40px 0px inset, rgba(0, 0, 0, 0.06) 0px 2px 1px, rgba(0, 0, 0, 0.09) 0px 4px 2px, rgba(0, 0, 0, 0.09) 0px 8px 4px, rgba(0, 0, 0, 0.09) 0px 16px 8px, rgba(0, 0, 0, 0.09) 0px 32px 16px;
}

.sign-in-pannel .method .option{
    padding: 7px;
    border-radius: 20px;
    margin: 2px;
    margin-left: 5px;
    margin-right: 5px;
    cursor: pointer;
}

.sign-in-pannel .method .selected{
    background-color: rgb(49, 8, 56);
    box-shadow: rgba(50, 50, 93, 0.25) 0px 30px 60px -12px, rgba(0, 0, 0, 0.3) 0px 18px 36px -18px;
}

.sign-in-pannel .process-dis{
    margin-top: 30px;
    width: 100%;
    height: 70%;
}

.sign-in-pannel .process-dis .input-field{
    width: 100%;
    min-height: 100%;
}

.sign-in-pannel .process-dis .input-field input{
    width: 70%;
    padding: 12px 20px;
    margin: 8px 0;
    margin-top: 20px;
    box-sizing: border-box;
    border-radius: 20px;
    border: none;
    outline: none;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 30px 60px -12px, rgba(0, 0, 0, 0.3) 0px 18px 36px -18px;
}

.sign-in-pannel .action{
    width: 100%;
    height: 50px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-end;
    align-self: flex-end;
    margin: 20px;
}

.sign-in-pannel .action button{
    width: fit-content;
    padding: 15px;
    padding-left: 25px;
    padding-right: 25px;
    border-radius: 10px;
    border-top-right-radius: 5px;
    cursor: pointer;
    transition-duration: 1s;
    border: 3px solid rgb(49, 8, 56);
    background-color: rgba(49, 8, 56, 0);
    color: rgb(49, 8, 56);
    box-shadow: rgba(50, 50, 93, 0.25) 0px 30px 60px -12px, rgba(0, 0, 0, 0.3) 0px 18px 36px -18px;
}

.sign-in-pannel .action button:hover{
    border: 3px solid rgba(49, 8, 56, 0);
    background-color: rgb(49, 8, 56);
    color: rgb(255, 255, 255);
}

.s-1{
    font-size: 130%;
}

.s-2{
    font-size: 110%;
}

/* width */
::-webkit-scrollbar {
    width: 10px;
    border-bottom-left-radius: var(--dashbord-border-radius);
}

/* Track */
::-webkit-scrollbar-track {
    transition-duration: 2s;
}

::-webkit-scrollbar-track:hover {}

/* Handle */
::-webkit-scrollbar-thumb {
    transition-duration: 2s;
    background-color: rgb(171, 171, 171);
    border-radius: 5px;
    background-clip: padding-box;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: #555;
}

@media (max-width:1500px) {
    .left{
        width: 60%;
    }

    .sign-in-pannel{
        background-color: rgba(240, 248, 255, 0.648);
    }
}

@media (max-width:1200px) {
    .left{
        width: 70%;
    }
}

@media (max-width:950px) {
    .left{
        width: 85%;
    }
}

@media (max-width:750px) {
    .left{
        width: 95%;
    }
}

@media (max-width:600px) {
    .left{
        width: 100%;
    }

    .sign-in-pannel{
        width: 70%;
    }
}

@media (max-width:500px) {
    .left{
        width: 100%;
    }

    .sign-in-pannel{
        width: 80%;
    }
}

@media (max-width:450px) {
    .sign-in-pannel{
        width: 95%;
    }
}

@media (max-width:290px) {
    .sign-in-pannel{
        width: 100%;
        border-radius: 0px;
        box-shadow: none;
    }
}