*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    background:#111;
    font-family:Arial,Helvetica,sans-serif;
    color:#fff;
    min-height:100vh;
    display:flex;
    justify-content:center;
    align-items:center;
    padding:20px;
}

.container{
    width:100%;
    display:flex;
    justify-content:center;
}

.menuCards{
    display:flex !important;
    justify-content:space-between !important;
    gap:15px !important;
    margin:25px 0 !important;
}

.menuCards .cardMenu{
    flex:1 !important;
    display:flex !important;
    flex-direction:column !important;
    align-items:center !important;
    justify-content:center !important;

    background:#2d2d2d !important;
    color:#fff !important;
    text-decoration:none !important;

    padding:18px 10px !important;
    border-radius:18px !important;
    border:2px solid #444 !important;
}

.menuCards .cardMenu *{
    color:#fff !important;
    text-decoration:none !important;
}

.menuCards .cardMenu.ativo{
    background:#ff7a00 !important;
    border-color:#ff7a00 !important;
}

.menuCards .icone{
    font-size:34px !important;
    margin-bottom:10px !important;
}

.menuCards .titulo{
    font-size:15px !important;
    font-weight:bold !important;
}

.card{
    width:100%;
    max-width:480px;
    background:#1d1d1d;
    border-radius:18px;
    padding:30px;
    box-shadow:0 0 30px rgba(0,0,0,.45);
}

.logo{
    text-align:center;
    margin-bottom:20px;
}

.logo img{
    width:120px;
    max-width:100%;
    height:auto;
}

h1{
    text-align:center;
    font-size:26px;
    margin-bottom:8px;
}

.subtitle{
    text-align:center;
    color:#999;
    margin-bottom:25px;
    font-size:15px;
}

input[type=password]{
    width:100%;
    padding:14px;
    border:none;
    border-radius:10px;
    outline:none;
    background:#2d2d2d;
    color:#fff;
    font-size:16px;
    margin-bottom:20px;
}

#drop{
    border:2px dashed #ff6a00;
    border-radius:14px;
    padding:35px 20px;
    text-align:center;
    cursor:pointer;
    transition:.3s;
    background:#242424;
}

#drop:hover{
    background:#2d2d2d;
    transform:scale(1.01);
}

#drop.hover{
    background:#2d2d2d;
    border-color:#ff9800;
}

.upload-icon{
    font-size:52px;
    margin-bottom:10px;
}

.upload-title{
    font-size:22px;
    font-weight:bold;
    margin-bottom:8px;
}

.upload-subtitle{
    color:#bbb;
    margin-bottom:20px;
}

#btnSelecionar{
    background:#ff6a00;
    color:#fff;
    border:none;
    padding:12px 24px;
    border-radius:10px;
    cursor:pointer;
    font-size:15px;
    transition:.3s;
}

#btnSelecionar:hover{
    background:#ff8c1a;
}

.progress{
    width:100%;
    height:28px;
    background:#303030;
    border-radius:30px;
    overflow:hidden;
    margin-top:25px;
}

.progress-bar{
    width:0%;
    height:100%;
    background:linear-gradient(90deg,#ff6a00,#ff9800);
    display:flex;
    justify-content:center;
    align-items:center;
    transition:width .2s ease;
}

#percent{
    color:#fff;
    font-size:14px;
    font-weight:bold;
}

#filename{
    margin-top:15px;
    text-align:center;
    color:#ddd;
    font-size:15px;
}

#status{
    margin-top:10px;
    text-align:center;
    color:#00e676;
    font-weight:bold;
}

#result{
    margin-top:20px;
}

#result input{
    width:100%;
    padding:12px;
    border:none;
    border-radius:8px;
    background:#2d2d2d;
    color:#fff;
    margin-bottom:15px;
}

#result button{
    width:100%;
    padding:12px;
    border:none;
    border-radius:10px;
    background:#ff6a00;
    color:#fff;
    font-size:16px;
    cursor:pointer;
    transition:.3s;
}

#result button:hover{
    background:#ff8c1a;
}

@media(max-width:600px){

    .card{
        padding:20px;
    }

    h1{
        font-size:22px;
    }

    .upload-title{
        font-size:18px;
    }
}