@import url("https://fonts.googleapis.com/css?family=Poppins:400,500,600,700&display=swap");
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

html,
body {
    display: grid;
    height: 100%;
    width: 100%;
    place-items: center;
}

::selection {
    background: #fa4299;
    color: #fff;
}

.wrapper {
    overflow: hidden;
    width: 350px;
    max-width: 90vw;
    padding: 30px;
    border-radius: 5px;
    background-color: #363535;
    box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.3);
    -webkit-box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.3);
    -moz-box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.3);
}

.logo-container {
    display: flex;
    justify-content: center;
    margin-bottom: 0.5rem;
}

.logo-container img {
    min-width: 75px;
    max-width: 80%;
    max-height: 80px;
}

#login:checked~label.login {
    cursor: default;
    user-select: none;
}

.wrapper .form-container {
    width: 100%;
    overflow: hidden;
    padding: 0 1rem;
}

.slide-controls {
    text-align: center;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 4px;
    color: #fff;
}

.form-container .form-inner {
    display: flex;
}

.form-container .form-inner form {
    width: 100%;
    transition: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.form-inner form .field {
    height: 36px;
    width: 100%;
    margin-top: 20px;
}

.form-inner form .field input {
    height: 100%;
    width: 100%;
    outline: none;
    padding-left: 15px;
    border-radius: 5px;
    border: none;
    border-bottom-width: 2px;
    font-size: 17px;
    box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.3);
    -webkit-box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.3);
    -moz-box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    -webkit-appearance: none;
}

.form-inner form .field input:focus {
    border-color: #fc83bb;
    /* box-shadow: inset 0 0 3px #fb6aae; */
}

.form-inner form .field input::placeholder {
    color: #999;
    transition: all 0.3s ease;
}

form .field input:focus::placeholder {
    color: #b3b3b3;
}

.form-inner form .pass-link a:hover,
.form-inner form .signup-link a:hover {
    text-decoration: underline;
}

form .btn {
    height: 50px;
    width: 100%;
    border-radius: 5px;
    position: relative;
    overflow: hidden;
}

form .btn .btn-layer {
    height: 100%;
    width: 300%;
    position: absolute;
    left: -100%;
    background: -webkit-linear-gradient(right, #63d471, #233329);
    border-radius: 5px;
    transition: all 0.4s ease;
}

form .btn:hover .btn-layer {
    left: 0;
}

form .btn input[type="submit"] {
    height: 100%;
    width: 100%;
    z-index: 1;
    position: relative;
    background: none;
    border: none;
    color: #fff;
    padding-left: 0;
    border-radius: 5px;
    font-size: 20px;
    font-weight: 500;
    cursor: pointer;
}

.error-container {
    text-align: center;
}

.error-container span {
    color: red;
}