@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'poppins';
    user-select: none;
}

svg {
    width: 45px;
}

:root {
    --green: #00c23d;
    --violet: #6f00ff;
}

body {
    background: #fff;
}

.container {
    position: relative;
    max-width: 1300px;
    min-width: 1000px;
    padding: 0 10px;
    margin: auto;
}

.container-select-type {
    width: 550px;
    height: 50px;
    border-radius: 50px;
    border: 3px solid #000;
    background: #eee;
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.container-select-type .content-option {
    font-weight: 600;
    padding: 5px 10px;
    border-radius: 50px;
    cursor: pointer;
}

.container-select-type .content-option.enable {
    background: #007fff;
    color: #fff;
}

.container-select-type .content-option input {
    appearance: none;
    opacity: 0;
}

.box-compex {
    position: relative;
    padding: 25px 0;
    display: flex;
    align-items: center;
    flex-direction: column;
}

.box-compex h1 {
    text-align: center;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.box-compex form {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 1040px;
}

.box-compex form .import-content {
    position: relative;
    display: flex;
    justify-content: space-between;
    width: 100%;
    padding: 20px 0;
}

/* .box-compex form .import-content.one-upload .file-box {
    width: 1040px;
}

.box-compex form .import-content.one-upload .file-box-2 {
    display: none;
} */

.box-compex form .import-content .file-box {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 500px; height: 400px;
    border: 3px solid var(--green);
    background: #f6fff9;
    border-radius: 14px;
    cursor: pointer;
}

.box-compex form .import-content .file-box-2 {
    border-color: var(--violet);
    background: #f7f2ff;
}

.box-compex form .import-content .file-box .icon {
    display: flex;
    margin-bottom: 20px;
    pointer-events: none;
}

.box-compex form .import-content .file-box .icon svg {
    width: 80px;
    fill: var(--green);
}

.box-compex form .import-content .file-box-2 .icon svg {
    fill: var(--violet);
}

.box-compex form .import-content .file-box p {
    font-size: 1.2em;
    font-weight: 600;
    max-width: 300px;
    text-align: center;
    pointer-events: none;
}

.box-compex form button {
    background: #007fff;
    border: 0;
    border: 3px solid #fff;
    color: #fff;
    box-shadow: 0px 0px 0px 3px #000;
    border-radius: 8px;
    width: 100%; height: 50px;
    font-size: 1.2em;
    font-weight: 600;
    cursor: pointer;
    margin-top: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}
