@font-face {
    font-family: "Circular";
    src: url(../Circular/CircularStd-Medium.otf);
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    color: #ffffff;
    font-family: "Circular", serif;

    -moz-user-select: none; /* Firefox */
    -webkit-user-select: none; /* Chrome, Safari, Opéra depuis la version 15 */
    -ms-user-select: none; /* Internet explorer depuis la version 10 et Edge */
    user-select: none; /* Propriété standard */
}

html,
body {
    height: 100%;
    width: 100%;
}

body {
    display: flex;
    justify-content: center;
    align-items: center;

    overflow: hidden;
}

#container {
    height: calc(100% - 32px);
    width: calc(100% - 32px);

    border-radius: 12px;

    background-color: #1a1a1a;
}

#formulaireAjoutMusique {
    height: 100%;
    width: 100%;

    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
}

#formulaireAjoutMusique>input {
    height: 64px;
    width: 384px;

    border-radius: 12px;

    border: none;

    padding-left: 12px;
    background-color: #3b3b3b !important;
    font-size: 1.5rem;

    transition: .1s;
}

input:focus {
    outline: solid 1px #ffffff;
}


.drop-container {
    width: 380px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    height: 200px;
    padding: 20px;
    border: 2px dashed #0f0f0f;
    color: #ffffff;
    cursor: pointer;
    transition: .1s;
    border-radius: 12px;
    background-color: #1a1a1a;

    transition: .1s;
}

.drop-container:hover {
    background: #3b3b3b;
}

.drop-title {
    color: #ffffff;
    font-size: 2rem;
    font-weight: 500;
    text-align: center;
}

.drop-container.drag-active {
    background: #3b3b3b;
}

input[type=file] {
    width: 350px;
    max-width: 100%;
    color: #ffffff;
    padding: 8px;
    border-radius: 6px;

    border: solid 1px #0f0f0f;
}

input[type=file]::file-selector-button {
    margin-right: 8px;
    background: #17d582;
    padding: 8px 12px;
    color: #000000;
    cursor: pointer;
    border-radius: 6px;
    border: none;

}

form>div {
    width: 384px;
    height: 64px;
    
    border-radius: 16px;
    
    background-color: #17d582;
    
    color: #000000;
    
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    
    cursor: pointer;
    
    font-size: 1.4rem;
    font-weight: 500;
}




/*/////////////////////////////////////////////////////*/


@media screen and (max-width: 500px) {
    #formulaireAjoutMusique>input {
        width: 270px;
        font-size: 1.3rem;
    }
    
    .drop-container {
        width: 270px;
        height: 150px;
    }

    .drop-title {
        font-size: 1.2rem;
    }

    input[type=file]::file-selector-button {
        font-size: .7rem;
    }
    
    form > div {
        width: 270px;
    }
}