h1{
    color: white;
    text-align: center;
}

.pnl{
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    justify-self: center;
    align-items: center;
    padding: 20px;
    margin: 10px;
    
    width: 50vw;
    height: 80vh;

    border: white solid 2px;
    border-radius: 20px;
}


.pnl>input{
    font-size: calc(2vh + 10px);
    border-radius: 10px;
    padding-left: 20px;
    border: white solid 2px;
    width: 80%;
}

.pnl>input:focus{
    outline: none;
    border-color: rgb(152, 15, 231);
    border-width: 3px;
}

.pnl > input:valid:not(:placeholder-shown) {
    border-color: green;
}

.pnl > input:invalid:not(:placeholder-shown) {
    border-color: red;
}

.pnl>div{
    display: flex;
    justify-content: space-between;
    min-width: 60%;
    gap: 20px;
}

.pnl>div>button{
    font-size: calc(2vw + 10px);
    border: white solid 2px;
    border-radius: 10px;
    background-color: transparent;
    color: white;
    flex-basis: 50%;
}

.pnl>div>button:hover{
    text-shadow:
    0 1px 1px rgba(16, 194, 207, 0.767),
    0 2px 4px rgba(16, 194, 207, 0.767);
    
    box-shadow:
    0 0 10px rgba(16, 194, 207, 0.767),
    0 0 30px rgba(16, 194, 207, 0.767),
    0 0 60px rgba(16, 194, 207, 0.767);

}

@media (max-width:1025px) {
    .pnl{
        width: 98%;
        padding: 0px;
        height: 80vh;
    }
}

@media (max-width:345px) {

    .pnl{
        width: 98%;
        padding: 0px;
        margin: 0px;
        height: 80vh;
        font-size: calc(1vw + 2px);
    }

    .pnl>input{
        font-size: calc(2vh + 5px);
        border-radius: 10px;
        padding-left: 20px;
        border: white solid 2px;
        width: 80%;
    }
    .pnl>div>button{
        font-size: calc(1.5vw + 20px);
    }
}
