@import url("https://cdnjs.cloudflare.com/ajax/libs/cropperjs/1.6.1/cropper.min.css");
@import url("https://cdnjs.cloudflare.com/ajax/libs/cropperjs/1.6.1/cropper.min.css");
/******************/
/* Create Trainer */
/******************/

.create-header {
    margin-top: 0;
    margin-bottom: 10px;
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    padding-top: 10px;
    height: 65px;
    z-index: 7;
    color: white;
    background-color: var(--pokemon-blue);
}

.create-form {
    width: 100vw;
    margin: 135px auto 0 auto;
    background-color: white;
    padding: 3vw;
}

.drop-area {
    border: 2px dashed #ccc;
    border-radius: 5px;
    width: 90vw;
    height: 90vw;
    padding: 10px;
    margin: 2vw;
    text-align: center;
    position: relative;
    overflow: hidden;
}

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

#preview {
    width: 90vw;
    height: 90vw;
    position: absolute;
    top: 0;
    left: 0;
}

#preview img {
    display: block;
    max-width: 100%;
    height: auto;
}

.create-form-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.choose-names,
.set-password {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    width: 90%;
}

.create-form p {
    font-size: 0.75rem;
    margin-top: 10px;
    text-align: right;
}

.choose-username,
.choose-password,
.choose-display-name {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    width: 100%;
    margin-top: 10px;
    padding: 0 15px;
    flex-grow: 1;
}

.choose-username label,
.choose-password label,
.choose-display-name label {
    margin-bottom: 10px;
    font-size: 1.25rem;
}

.choose-username input,
.choose-password input,
.confirm-password input,
.choose-display-name input {
    font-family: "Asap Condensed", sans-serif;
    font-size: 1.25rem;
    padding: 8px;
    border-radius: 10px;
    width: 100%;
}

#choose-region {
    font-family: "Asap Condensed", sans-serif;
    font-size: 1.25rem;
    padding: 8px;
    border-radius: 10px;
    width: calc(90% - 30px);
    margin-bottom: 40px;
    margin-top: 40px;
    cursor: pointer;
}

#create-submit {
    font-family: "Asap Condensed", sans-serif;
    background-color: var(--pokemon-blue);
    padding: 10px;
    color: white;
    border-radius: 5px;
    border: none;
    cursor: pointer;
    font-size: 1.25rem;
    opacity: 0.6;
}
