@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,300;1,400;1,500;1,600;1,700;1,800&family=Roboto:wght@100&display=swap');


body, html {
    color:white;
    font-family: 'Open Sans';
    margin:0;
    padding: 0;
    background-color:rgb(255, 255, 255);
}
#form-container {
    box-shadow:0 1px 1px hsl(0deg 0% 0% / 0.075),
    0 2px 2px hsl(0deg 0% 0% / 0.075),
    0 4px 4px hsl(0deg 0% 0% / 0.075),
    0 8px 8px hsl(0deg 0% 0% / 0.075),
    0 16px 16px hsl(0deg 0% 0% / 0.075);      
    border:1px solid white;
    width: 600px;
    height:500px;
    background-color: rgb(0, 200, 255);
    padding: 40px;
    border-radius: 5px;
    display:flex;
    margin: 10% auto;
    align-items: center;
    justify-content: center;
    position:relative;
    
}
#form {
    color:white;
    font-weight: bold;
    padding-bottom: 15px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

}
.title {
    font-size: 40px;
}
.btn-join {
    height:40px;
    width:90px;
    margin:0;
    background-color: rgb(255, 255, 255);
    border-radius: 5px;
    color:rgb(0, 149, 255);
    border:none;
    border-radius: 6px;
    font-weight: bold;
    font-size: 12px;
}

.chat-btn {
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
    height:40px;
    width:200px;
    margin:0;
    background-color: rgb(255, 255, 255);
    border-radius: 10px;
    color:rgb(0, 179, 255);
    font-weight: bold;
    border:1px solid rgb(0, 195, 255);
    font-size: 14px;
}
.chat-btn:hover {
    color: rgb(0, 157, 255);
}
.btn-join:hover {
    color:rgb(0, 102, 255);
    cursor: pointer;
}

.gradient {
    background: -webkit-linear-gradient(rgb(255, 131, 222), rgb(255, 255, 255));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  
}

#logo {
    object-fit: cover;
    position:absolute;
    top:-60px;
    border:2px solid rgb(0, 200, 255);
    height:120px;
    width: 120px;
    right:-60px;
    border-radius: 50%;

}
.room-input {
    margin-top: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height:40px;
    background-color: white;
    width: 300px;
    border-bottom:1px solid rgb(0, 195, 255);
    border-top:1px solid rgb(0, 195, 255);
    padding-left: 20px;
    font-size: 16px;



}
.subtext {
    font-weight: bold; 
    font-size: 20px;
}

input:focus,
select:focus,
textarea:focus,
button:focus {
    outline: none;
}

@media only screen and (max-width:600px) {
    #form-container {
        flex-direction:column;
        text-align: center;
        width:100%;
        height:100vh;
        box-sizing: border-box;
        margin: 0;
    }
    .title {
        font-size: 30px;
    }
    .subtext {
        font-size: 18px;
    }
    #form {
        background-color: transparent;
        box-shadow: none;
    }
    .or {
        font-weight: bold;
        font-size: 20px;
        color:white;
    }
    .btn-join {
        border: none;
        box-sizing: border-box;
        border-radius: 12px;
    }
    #logo {
        top:60px;
        left:40%;
        box-shadow:0 1px 1px hsl(0deg 0% 0% / 0.075),
        0 2px 2px hsl(0deg 0% 0% / 0.075),
        0 4px 4px hsl(0deg 0% 0% / 0.075),
        0 8px 8px hsl(0deg 0% 0% / 0.075),
        0 16px 16px hsl(0deg 0% 0% / 0.075);   

    }


}