@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap');


* {
    font-family: "Poppins";
}

/* start of usertype page */
.usertype {
   
    font-size: 15px;
    margin: auto; 
    margin-top: 40px;
    width: 50%;
    padding: 150px;
    box-sizing: border-box;
    text-align: center;
}

.usertype img {
    margin-top: -100px;
    margin-bottom: 60px;
    width: 400px;
}

.usertype h1 {
    white-space: nowrap;
    transform: translateX(-20px);
    
}

.button-container {
    margin-top: 100px;
    margin-left: -25px;
    margin-bottom: -50px;
    display: flex;
    gap: 100px;
   
}

.btn {
    border: 0px;
    border-radius: 10px;
    padding: 30px;
    cursor: pointer;
    width: 200px;
    background-color: rgb(193, 0, 0);
    color: white;
    font-size: 20px;
    font-weight: 700;
}

.btn:hover {
    background-color: #ad0000; 
}


/* end of usertype page*/

/*start of login page */

.login-container {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    min-height: 100vh;
    background: #fbfafa;
    display: flex;
    position: relative;

}

.login-container img {
    position: absolute; 
    top: 20px;
    left: 20px; 
    width: 250px; 
    height: auto; 
}

.login{
    display: grid;
    place-items: center; 
    margin: auto;
    
    
}

.login form{
    width: 100%;
    height: 80%;
    padding: 50px;
    background: white;
    border-radius: 13.5px;
    box-shadow: 0 8px 16px rgba(0,0,0,.3);
}

.login form h1{
    text-align: center;
    margin-bottom: 24px;
    color: black;
   
}

.login form .form-control{
    width: 100%;
    height: 40px;
    background: white;
    border-radius: 4px;
    border: 1px solid silver;
    margin: 10px 0 18px 0;
    padding: 0 10px;
}

.login form p {
    margin-top: 50px;
    text-align: center;
}

.login form .form-btn{
    
    margin-left: 50%;
    transform: translateX(-50%);
    width: 170px;
    height: 45px;
    border: none;
    outline: none;
    background: #ff2323;
    cursor: pointer;
    font-size: 20px;
    color: white;
    border-radius: 4px;
    transition: .3s;
}
.login form .form-btn:hover{
    background-color: #ad0000; 
}

/* end of login */



/*start of registration */


.register {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    display: flex;
    padding: 20px;
    background: rgb(237, 237, 237);
    justify-content: center;
    align-items: center;
    position: relative;
    
}

.register-container {
    max-width: 600px;
    width: 100%;
    font-size: 15px;
    padding: 20px 30px;
    border-radius: 10px;
    background-color: #fbfafa;
    box-shadow: 0 8px 16px rgba(0,0,0,.3);
}

.register-container h1 {
    text-align: center;
}

.user-details {
    display: flex;
    flex-wrap: wrap;
    gap: 20px; 
}


.input-box {
    flex: 1; 
    min-width: 200px; 
  
}

.input-box.full-width {
    flex-basis: 100%; 
}


.user-details .input-box input,
.user-details .input-box select {
    width: 100%;
    padding: 5px;
    box-sizing: border-box;
    border-radius: 10px;
}

.register-container .form-btn {
    display: block;
    font-size: 20px;
    margin: 10px auto; 
    margin-top: 50px;
    padding: 15px 60px; 
    background-color: #ff2323; 
    color: white; 
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.register-container .form-btn:hover {
    background-color: #ad0000; 
}

.register-container p {
    text-align: center;
}

/* end of registration */










