﻿.upload-container {
    position: relative;
}

    .upload-container input {
        border: 1px solid #92B0B3;
        background: #F1F1F1;
        outline: 2px dashed #253237;
        outline-offset: -0.5rem;
        padding: 5rem;
        width: 100%;
        height: 100%;
    }

        .upload-container input:hover {
            background: #ddd;
        }

        .upload-container input:after {
            position: absolute;
            bottom: 20%;
            left: 20%;
            content: "(or) Drag and Drop files here. ";
            color: #253237;
            font-weight: 600;
        }
