
.box{

    background:#fff;

    border-radius:18px;

    padding:25px;

    box-shadow:0 8px 25px rgba(0,0,0,.05);
    box-sizing: border-box;

}

.campos{
    position: relative;
    padding: 10px;
    width: 100%;
    border-radius: 10px;
    margin-top: 10px;
    border: solid 1px #ddd;
    outline: none;
    transition: 0.3s;
}

.campos:focus{
    box-shadow: 0 4px 20px rgba(255, 107, 0, 0.18);
    border: solid 1px var(--cor);
}

.btn_gravar {
    background: #ff6b00;
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 12px 22px;
    font-size: 15px;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    transition: all .25s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 0, 0.25);
    width: 100%;
}

.btn_gravar:hover {
    background: #e85f00;
    box-shadow: 0 8px 25px rgba(255, 107, 0, 0.35);
    transform: translateY(-2px);
}

.btn_gravar:active {
    transform: translateY(0);
    box-shadow: 0 4px 12px rgba(255, 107, 0, 0.25);
}

.btn_gravar:focus-visible {
    outline: none;
    box-shadow:
        0 0 0 4px rgba(255, 107, 0, 0.18),
        0 8px 25px rgba(255, 107, 0, 0.30);
}

.btn_gravar:disabled {
    background: #cfcfcf;
    color: #777;
    cursor: not-allowed;
    box-shadow: none;
}


.upload-logo{
    width:100%;
    max-width:650px;
    margin:auto;
}

.upload-logo input{
    display:none;
}

.upload-logo label{
    display:flex;
    flex-direction:column;
    align-items:center;
    gap:15px;

    padding:35px;

    background:#fff;
    border:2px dashed #d8d8d8;
    border-radius:15px;

    cursor:pointer;
    transition:.3s;
}

.upload-logo label:hover{
    border-color:#ff6b00;
    background:#fff8f3;
}

.preview{
    width:180px;
    height:180px;

    display:flex;
    align-items:center;
    justify-content:center;

    background:#f8f8f8;
    border:2px dashed #ddd;
    border-radius:12px;
    overflow:hidden;
}

.preview img{
    width:100%;
    height:100%;
    object-fit:contain;
}

.preview i{
    font-size:60px;
    color:#ff6b00;
}

.recomendacao{
    width:100%;
    padding:15px;
    background:#fff5ed;
    border-left:4px solid #ff6b00;
    border-radius:10px;
    color:#555;
    font-size:14px;
}