* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

*::selection {
    background-color: gray;
}

*::-moz-selection {
    background: gray;
}

* {
    -webkit-tap-highlight-color: transparent;
}

html {
    font-size: 62.5%;
    scroll-behavior: smooth;
}
:root{
    font-family: Whitney, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
    cursor:default;
}

body{
    background-color:black;
    color: white;
    overflow: hidden;

    
}
::-webkit-scrollbar{
    width: 2px;
}
::-webkit-scrollbar-track {
    background: #000;
}
::-webkit-scrollbar-thumb{
   background-color: rgb(255, 255, 255);
   /* border-radius: 20px; */

}
/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}
option{background-color: rgb(0, 0, 0);}
select.inputCont option:hover {fill: rgb(0, 0, 0);}
main{
    display: flex;
}

.bigFlex1{
    width: 50%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    background-color: white;
    background-image: url(Stars-background-dark.svg);
    background-size:100%;
    /* overflow: visible; */
    overflow-y: scroll;
}
.back-to-home-div{
    padding-left: 0px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    height: 10vh;
}
#arrow-left{
    background-color: black;
    background-image: url(arrow-left.png);
    /* border: 1px solid white; */
    border-radius: 50%;
    background-size: 70%;
    background-position: center;
    background-repeat: no-repeat;
    height: 70px;
    width: 70px;
    text-decoration: none;
    cursor: pointer;
}

.bigFlex2{
    height: 100vh;
    width: 50%;
    background-color: white;
    background-image: url(registerwallpaper.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    
}
.register{
    width: 100%;
    height: fit-content;
}
#logo{
    /* background-color: red; */
    width: 100%;
    padding-left: 40px;
    padding-top: 20px;
}
#logo img{
    width: 50%;
}

.heading-and-login-link-div{
    width: 100%;
    height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding-left: 120px;

}
h1{
    font-weight: 500;
    font-size: 6rem;
}
p{
    font-size: 2rem;
}
.smallFlex{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 100%; 
}
.bchaFlex{
    position: relative;
    width:70%;
    display: flex;
    align-items: center;
    margin: 35px 0;

}
#imageDisplay{
    height: 250px;
    width: 200px;
    border: 1px solid white;
    background-position: center;
    background-size: cover;
    text-align: center;
    font-size: 4vh;
    display: flex;
    justify-content: center;
    align-items: center;
}
input::file-selector-button {
    font-weight: bold;
    color: white;
    padding: .8rem;
    background-color: transparent;
    border: 1px solid white;
    border-radius: 0px;
    margin-top: 1rem;
    transition-duration: .2s;
    cursor: pointer;
}
input::file-selector-button:hover{
    background-color: white;
    color: black;
    transition-duration: .2s;
}

label{
    position: absolute;
    height: 55px;
    display: flex;
    align-items: center;
    padding-left: 15px;
    font-size: 1.8rem;
    color: gray;
    transition-duration: .3s;
    z-index: 2;
}
.activeLabelup{
    transform: translateY(-45px);
    transition-duration: .3s;
    padding: 0;
    color: white;
    font-size: 2rem;
}
.inputCont:focus{
    outline: none;
}

.inputCont{
    background-color: transparent;
    border: none;
    border: 1px solid white;
    color: white;
    height: 55px;
    width: 100%;
    font-size: 1.9rem;
    padding-left: 15px;
    z-index: 3;
    }
.btn{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}
#submitbutton:disabled,
#submitbutton[disabled]{
  border: 1px solid #999999;
  background-color: #f71e1e;
  color: #666666;
}
button{
    width: 15vw;
    align-items: center;
    height: 6vh;
    font-size: 2.2rem;
    background-color: white;
    margin:50px;
    cursor: pointer;
    border-radius: 0;
}
button:hover{
    background-color: #ddd;
}
#submitbutton:disabled,
#submitbutton[disabled]{
    border: none;
  background-color: rgb(161, 24, 24);
  color: white;
  box-shadow: 0px 0px 10px rgb(186, 0, 0);
}
a:link, a:visited{
    text-decoration: none;
    color: skyblue;
}
a:hover{
    color: rgb(211, 236, 247);
    font-weight: 500;
}
a:active{
    color: white;
    font-weight: 300;
}
#eyetoggle{
    position: absolute;
    color: white;
    background-color: transparent;
    border: none;
    font-size: 1.5rem;
    right: 25px;
    height: 55px;
    display: flex;
    align-items: center;
    z-index: 4;
}
#hide{
display: block;
}
#show{
display: none;
}
#show::selection,#hide::selection {
    background-color: transparent;
}

#show::-moz-selection,#hide::-moz-selection {
    background: transparent;
}
#passwordmatchArticle{
    width: 70%;
    margin-top: -20px;
    font-size: 1.5rem;
    color: rgb(255, 50, 50);
    display: none;
}
 
/* responsive code below*/
@media screen and (max-width:1920px) {
    html {
        font-size: 60%;
    }
}

@media screen and (max-width:1200px) {
    html {
        font-size: 60%;
    }
}

@media screen and (max-width:998px) {
    html {
        font-size: 55%;
    }
    .bigFlex1{
        width: 100%;
    }
    .bigFlex2{
        width: 0;
        display: none;
    }
    .heading-and-login-link-div{
        height: 200px;
        padding: 0;
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
        align-items: center;
        padding-bottom: 20px;

    }
    h1{
        width: 70%;
    }
    p{
        width: 70%;
    }
    button{
        width: 400px;
        border: none;
        border-radius: 0;
    }
}

@media screen and (max-width:768px) {
    html {
        font-size: 50%;
    }
    button{
        width: 70%;
    }
}

@media screen and (max-width:500px) {
    html {
        font-size: 45%;
    }
    #logo{
        padding-left: 0;
        padding-top: 0;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    #logo img{
        width: 80%;
    }
    .heading-and-login-link-div{
        height: 150px;
    }
    .bchaFlex{
        margin: 25px 0px;
    }
    .inputCont{
        height: 50px;
        font-size: 2.5rem;
    }
    label{
        height: 50px;
        font-size: 2rem;
    }
    .activeLabelup{
        font-size: 2.5rem;
    }
    #eyetoggle{
        height: 50px;
        font-size: 2.5rem;
    }
    .register{
        padding-bottom: 50px;
    }
    #passwordmatchArticle{
        font-size: 1.8rem;
    }
}



@media screen and (max-width:430px) {
    html {
        font-size: 40%;
    }
}

@media screen and (max-width:375px) {
    html {
        font-size: 40%;
    }
}
@media screen and (max-width:300px) {
    html {
        font-size: 40%;
    }

}
@media screen and (max-height:650px) and (max-width:350px){
   
}
@media screen and (max-height:600px) and (max-width:900px){
 
}
/* responsive code above */

