body {
    place-items: center;
    
}
.drop-container {
    background-color: transparent;
    padding: 1.5rem;
    display: inline-block;
    border-radius: 10px;
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.2);
}
.drop {
    border-radius: 10px;
    border: 3px dashed #ffffff;
    display: grid; 
    place-content: center;
    padding: 1rem;
    box-sizing: border-box;
    place-items: center;
}
.active {
    border: 3px solid #4b4b4b;
    background-color: #edccff;
}
.drop .icon {
    font-size: 60px;
    color: #5333ed;
}
.drop .text {
    text-align: center;
    font-weight: 500;
    color: #443f46;
    margin-top: 1rem;
}
.progress {
    background-color: #5333ed;
    width: 0;
    height: 20px;
    display: none;
    border-radius: 10px;
    transition: all 0.2s;
}
.drop label {
    background-color: #5333ed;
    padding: 0.7rem 1.8rem;
    border-radius: 5px;
    color: #fff;
    cursor: pointer;
}
.file-input {
    display: none;
}
.line {
    width: 80px;
    height: 1px;
    background-color: #949494;
}
.or-container {
    display: flex;
    align-items: center;
    margin: 0.5rem;
}
.or {
    margin: 0 1rem;
    font-weight: 500;
    color: #443f46;
}