body {
    background-color: #1f1f1f;
    color: white;
    font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
    text-align: center;
}

h2 {
    margin-top: 15px;
    margin-bottom: 5px;
}

label {
    font-size: 16px;
}

.main {
    margin: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 343px;
    background: #272727;
    border-radius: 7px;
}

.file-upload {
    margin-top: 8px;
    border-radius: 5px;
    display: inline-block;
    padding: 5px 3px;
    background-color: #5258cc;
    cursor: pointer;
    width: 250px;
    height: 16px;
    font-size: 14px;
    margin-bottom: 7px;
}

input[type="file"] {
    display: none;
}

button {
    margin-top: 3px;
    border-style: none;
    border-radius: 5px;
    display: inline-block;
    background-color: #5258cc;
    cursor: pointer;
    width: 255px;
    height: 27px;
    font-size: 14px;
    margin-bottom: 7px;
    color: white;
}

select {
    margin-top: 7px;
    border-style: none;
    border-radius: 5px;
    display: inline-block;
    background-color: #5258cc;
    cursor: pointer;
    width: 257px;
    height: 27px;
    font-size: 0.85rem;
    margin-bottom: 2px;
    color: white;
    padding-left: 6px;
}

.switch-container {
    display: flex;
    align-items: center;
    transform: translate(8%, 0%);
}
.switch-container > span {
    padding: 3px;
    font-size: 15px;
    font-weight: 500;
    line-height: 28px;
}

.switch {
    position: relative;
    display: inline-block;
    width: 35px;
    height: 20px;
}

.switch input {
    display: none;
}
.slider {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ff4f4f;
}
.slider::before {
    position: absolute;
    content: "";
    height: 15px;
    width: 15px;
    left: 3px;
    bottom: 0.128rem;
    background-color: #cccccc;
    transition: 0.4s;
}
input[type="checkbox"]:checked + .slider::before {
    -webkit-transform: translateX(13px);
    -ms-transform: translateX(13px);
    transform: translateX(13px);
    bottom: 0.2rem;
}
input[type="checkbox"]:checked + .slider {
    background-color: #2ad441b7;
}

.check-label {
    margin-left: 4px;
    color: white;
}

.slider.round {
    border-radius: 34px;
}
.slider.round::before {
    border-radius: 50%;
}
  