.myoutput{
    border: none;
    background: white;
    box-shadow: 0 0 15px #4a434328;
    margin-left: 256px;
    margin-right: 16px;
    padding: 24px;
    margin-top: 90px;
    display: flex;
    gap: 30px;
    border-radius: 30px;
    height: calc(100vh - 110px);
}

.myoutput>div {
    padding: 20px;
    width: 400px;
    height: 400px;
    border-radius: 30px;
    border: 1px solid #04a835;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.myoutput_title{
    display: block;
    width: 100%;
    font-size: 29px;
    color: var(--color-primary);
    font-weight: bold;
}

.form-control:focus{
    box-shadow: 0 0 2px #76ff9f59;
    border: 1px solid #04a835;
}

.qrframe{
    border: none;
}

.dllink h4{
    color: var(--color-primary);
    text-align: center;
}

.submitBtn, .form-group input {
    font-size: 16px;
    outline: none;
    padding: 10px;
    border-radius: 4px;
    border: 1px solid #04a835;
    margin-top: 16px;
    width: 100%;
    border-radius: 30px;
}

.submitBtn{
    background: #04a835;
    color: #fff;
}

.submitBtn:hover{
    background: #069b32;
    outline: none;
    border: none;
    border: 1px solid #069b32;
    transition: all 0.155s linear;
}

.submitBtn:focus{
    outline: none;
    border: none;
    background: #069b32;
    border: 1px solid #069b32;
}

