form {
    padding: 0 300px;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    overflow-y: scroll;
    overflow-x: initial;
}

#player-form-box {
    width: 700px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}

#head-wrapper {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12.5px;
}

input {
    margin-bottom: 12.5px;
}

#first-name,
#last-name,
#password,
#cpassword {
    width: 290px;
}

#datepicker-wrapper {
    padding: 15px;
    width: min-content;
}

#avatar {
    display: none;
}

.placeholder {
    margin: 0;
    margin-bottom: 5px;
    width: 100%;
    opacity: .7;

    text-align: center;
}

/* AVATAR */
#avatar-wrapper {
    width: 405px;
    height: 340px;
    display:flex;
    align-items: center;
    justify-content: center;
}

#player-image-customization {
    position: relative;
}

#player-profile-avatar {
    width: 265px;
}

#player-modify-avatar {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    position: absolute;
    width: 400px;
    align-items: center;
    justify-content: flex-start;
    background-color: #fff;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transform: skew(90deg) scale(0);
    transform-origin: top left;

    transition-property: opacity, transform;
    transition-duration: 150ms;
}

#player-modify-avatar.player-modify-avatar-open {
    transform: skew(0deg) scale(1);
    opacity: 1;
    visibility: visible;
    background-color: #fff;
}

.avatar-modify-trait {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    background-image: none;
}

.avatar-modify-trait:hover {
    background-color: #25252510;

    transition-duration: 300ms;
    transition-property: background-color;
}

.avatar-arrow {
    cursor: pointer;
    border-radius: 0;
}

.avatar-arrow:hover {
    background-color: #25252520;
    border-radius: 100%;

    transition-duration: 300ms;
    transition-property: all;
}

.avatar-arrow-previous {
    margin-left: 10px;
}

.avatar-arrow-next {
    margin-right: 10px;
}

.trait-avatar {
    padding: 10px;
    margin: 5px;

    text-transform: uppercase;
    font-size: 15px;
    font-weight: 600;

    transition-duration: 300ms;
    transition-property: all;
}

/* BUTTON */
#signup-submit-button {
    transform: skewX(90deg) scale(0);
    transform-origin: top left;
    opacity: 1;

    transition-property: all;
    transition-duration: 300ms;
}

.signup-submit-valid {
    transform: skewX(0deg) scale(1) !important;
    opacity: 1;
}