.pantalla-5 {
    display: none;
    width: 100%;
    height: 290px;
    border-radius: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    overflow: hidden; 
}



.calculator{
    width: 290px;
    height: 290px;
    padding: 20px;
    border-radius: 10px;
}

.calculator form input{
    border: 0;
    outline: 0;
    width: 50px;
    height: 25px;
    border-radius: 10px;
    box-shadow: -8px -8px 15px rgba(255, 255, 255, 0.1), 5px 5px 15px rgba(0, 0, 0, 0.2);
    background: black;
    font-size: 1em;
    color: #fff;
    cursor: pointer;
    margin: 5px;
}

form .display{
    display: flex;
    justify-content: flex-end;
    margin: 20px 0 10px;
}

form .display input{
    text-align: right;
    flex: 1;
    font-size: 2em;
    padding: 20px;
    box-shadow: none;
    font-weight: 400;    
}

form div{
    display: flex;
    align-items: center;
    justify-content: center;
}

form input.cero, form input.equal{
    width: 50%;
}

form div input{
    font-weight: 600;
}

form input.orange{
    background: #FF9F0C;
}

form input.gray{
    background: #b3b3bb;
    color: #020205;
}