/* section login */

.section-login {
    margin: 0;
    padding: 0;
    margin-bottom: 50px;
}

/* Profile Styles */

.section-profile {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.section-profile h2 {
    width: 100%;
    font-family: 'Satisfy';
    color: var(--rosewood);
    font-size: 40px;
    font-weight: 500;
    max-width: 1300px;
    padding: 0 50px;
    text-align: center;
}

.section-profile .content-profile {
    width: 100%;
    max-width: 1300px;
    display: flex;
    flex-direction: row;
}

/* Registration Styles */

.section-profile .content-profile .register {
    width: 50%;
    padding: 0 50px 50px 50px;
}

.section-profile .content-profile .register ul {
    list-style-type: none;
    font-family: 'Nunito';
    font-size: 14px;
    margin: 0;
    padding: 0;
    list-style: none;
    color: var(--grey40);
}

.section-profile .content-profile .register li {
    list-style: none !important;
}

.section-profile .content-profile .register span {
    font-family: 'Nunito';
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.5px;
    color: var(--grey70);
}

.section-profile .content-profile h3 {
    font-family: 'Nunito';
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: var(--grey70);
}

.section-profile .content-profile .register .group {
    width: 100%;
    display: flex;
    flex-direction: row;
}

.section-profile .content-profile .register .group .pw,
.section-profile .content-profile .register .group .cpw {
    width: 50%;
}

.section-profile .content-profile .register .group .cpw {
    padding-left: 5px;
}

.section-profile .content-profile .register .group .pw {
    padding-right: 5px;
}

.pw_characteristics {
    width: 230px;
    border-radius: 5px;
    margin: -1px;
}

.characteristic {
    font-family: 'Nunito';
    font-size: 14px;
    font-weight: 500;
    flex: 0 0 50%;
    font-size: 14px;
    line-height: 1.5;
    color: var(--lightPink);
    padding: 5px;
    box-sizing: border-box;
    border: 1px solid var(--lightPink);
    border-top: none;
    border-radius: 0;
    transition: background-color 0.3s ease;
    background-color: transparent;
}

.characteristic:first-child {
    border-radius: 5px 5px 0 0;
    border-top: 1px solid var(--lightPink);
}

.characteristic:last-child {
    border-radius: 0 0 5px 5px;
}

.fulfilled {
    background-color: var(--rosewood);
    color: var(--white);
    border-color: var(--rosewood);
}

.error {
    margin-top: 5px;
    font-size: 12px;
    color: #f44336;
    display: none;
}

.error.active {
    display: block;
}

/* Login Styles */

.section-profile .content-profile .login {
    width: 50%;
    padding: 10px;
    display: flex;
    flex-direction: column;
    padding: 0 50px 50px 50px;
    justify-content: flex-start;
}

.section-profile .content-profile .login .remember {
    font-family: 'Nunito';
    font-size: 12px;
    font-weight: 500;
}

.section-profile .content-profile .login .forgotten {
    font-family: 'Nunito';
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    color: var(--grey70);
}

/* Inputs Styles */

.section-profile .content-profile .input {
    position: relative;
    margin: auto;
    width: 100%;
    border-radius: 5px;
    overflow: hidden;
    margin-bottom: 15px;
}

.section-profile .content-profile .input .label {
    position: absolute;
    top: 20px;
    left: 12px;
    font-family: 'Poppins';
    font-size: 16px;
    font-weight: 500;
    color: rgba(0, 0, 0, 0.5);
    transform-origin: 0 0;
    transform: translate3d(0, -4px, 0);
    transition: all 0.2s ease;
    pointer-events: none;
    border-radius: 5px;
    background-color: transparent;
}

.section-profile .content-profile .input .focus-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    transform: scaleX(0);
    transform-origin: left;
    border-radius: 5px;
}

.section-profile .content-profile .input input {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    border: 0;
    font-family: inherit;
    padding: 16px 12px 0 12px;
    height: 56px;
    font-size: 16px;
    font-weight: 400;
    color: #000;
    transition: all 0.15s ease;
    border-radius: 5px;
    box-shadow: inset 0 0 0 1px var(--lightPink);
}

.section-profile .content-profile .input input:not(:placeholder-shown)+.label {
    color: rgba(0, 0, 0, 0.5);
    transform: translate3d(0, -12px, 0) scale(0.75);
}

.section-profile .content-profile .input input:focus {
    outline: none;
    box-shadow: inset 0 0 0 1.5px var(--lightPink);
}

.section-profile .content-profile .input input:focus+.label {
    color: var(--rosewood);
    transform: translate3d(0, -12px, 0) scale(0.75);
}

.section-profile .content-profile .input input:focus+.label+.focus-bg {
    transform: scaleX(1);
    transition: all 0.1s ease;
}

/* Buttons Styles */

.section-profile .link-go {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    height: auto;
    margin-top: 20px;
}

.section-profile .link-go button {
    border: 2px solid var(--lightPink);
    padding: 5px 10px;
    transition: all 0.3s ease-in-out;
    font-family: 'Poppins', sans-serif;
    font-weight: 600px;
    font-size: 14px;
    color: var(--grey70);
    text-transform: uppercase;
    margin: 0;
    background: transparent;
    text-decoration: none;
}

.section-profile .link-go button:hover {
    background-color: var(--rosewood);
    color: var(--white);
    cursor: pointer;
}

@media (max-width: 750px) {
    .section-profile .content-profile {
        flex-direction: column;
    }

    .section-profile .content-profile .register,
    .section-profile .content-profile .login {
        width: 100%;
    }

    .section-profile .content-profile .register .group {
        flex-direction: column;
    }

    .section-profile .content-profile .register .group .pw,
    .section-profile .content-profile .register .group .cpw {
        width: 100%;
    }

    .section-profile .content-profile .register .group .cpw,
    .section-profile .content-profile .register .group .pw {
        padding: 0;
    }
}
