body{
    display:flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: rgb(37, 39, 39);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.text{
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    border: 1px solid black;
    height: auto;
    max-width: 400px;
    padding: 20px;
    text-align: center;
    background-color: rgb(202, 224, 224);
    border-radius: 10px;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgb(0, 0, 0);
}

.wrapper{
    text-align: center;
    padding: 20px;
    
}

.logo{
    width: 150px;
    height: auto;
}



label{
    color: white;
    padding: 20px;
}

.select{
    margin-top: 40px;
    font-size: 20px;
    text-align: left;
}

#stocks{
    font-size: 15px;
    width: 150px;
    
}

.grid {
    display:grid;
    grid-template-columns: 50% 50%;

  }

.left{
    font-weight: bold;
}

.check{
    width: 100px;
    border-radius: 5px;
    height: 30px;
    margin-top: 10px;
    background-color: rgb(99, 98, 98);
    color: white;
    font-size: 18px;
}

.check:hover{
    background-color: rgb(173, 173, 173);
    cursor: pointer;
}