.btn {
    width: 48px;
    height: 48px;
    background-color: #2699fb;
    color: white;
    border-radius: 4px;
    outline: none;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
}

.btn:active {
    background-color: #007feb;
}

.btn-lg {
    width: 100px;
    height: 48px;
}

.row {
    display: flex;
    gap: 4px;
    margin-bottom: 4px;
}

.inp {
    width: 204px;
    height: 48px;
    box-sizing: border-box;
    outline: none;
    color: #bce0fd;
    padding: 0 20px;
}
 
.inp:disabled {
    background-color: white;
    border: solid 1px #bce0fd;
    font-size: 14px;
}