﻿.file-drop-zone {
    display: flex;
    width: 100%;
    border: 3px dotted #123f7a;
    align-items: center;
    margin-bottom: 2px;
    padding: 30px 50px;
    border-radius: 5px;
    background-color: #f7f7f7;
}

.hover {
    border-style: solid;
    background-color: #f8fbff;
}

::deep input[type=file] {
    width: 100%;
    padding: 20px;
}

.custom-file-upload {
    display: inline-block;
    cursor: pointer;
    border-radius: 5px;
    position: relative;
    overflow: hidden;
    align-items: center;
}

    .custom-file-upload input[type="file"] {
        position: absolute;
        left: 0;
        top: 0;
        opacity: 0;
        cursor: pointer;
        width: 100%;
        height: 100%;
    }

    .custom-file-upload span {
        display: inline-block;
        padding: 5px 10px;
    }
