@import url('https://fonts.googleleapis.com/css?family=poppins:400,500,600,700&display=swap');

* {
    margin: 0;
    padding: 0;
    outline: none;
    box-sizing: border-box;
    font-family: 'poppins', sans-serif;
}

body {
    height: 100vh;
    width: 100%;
    background: linear-gradient(115deg, #080a08 10%, #161318 90%);
}

.show-btn {
    background: #fff;
    padding: 10px 20px;
    font-size: 20px;
    font-weight: 500;
    color: #3498db;
    cursor: pointer;
    box-shadow: 0px 0px 10px rgba(o, o, o, o.1);
}

.show-btn,
.container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

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

.container {
    /* display: none; */
    background: -webkit-linear-gradient(right, #D4E9D6, #A8D5AB, #7DC183);

    width: 410px;
    padding: 30px;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
    border-style: double;
    border-color: white;

}

#show:checked~.container {
    display: block;
}

.container .close {
    position: absolute;
    right: 20px;
    top: 15px;
    font-size: 18px;
    cursor: pointer;
}

.container .close:hover {
    color: #3498db;
}

.container .text {
    font-size: 35px;
    font-weight: 600;
    text-align: center;
}

.container form .data {
    height: 45px;
    width: 350px;
    margin: 40px 0;
}

form .data label {
    font-size: 18px;
}

form .data input {
    height: 100%;
    width: 100%;
    padding-left: 10px;
    font-size: 15px;
    border: 1px solid #7dd0bb;
}

form .data input:focus {
    border-color: #3498db;
    border-bottom-width: 2px;
}

form .Forgot-password {
    margin-top: -8px;

}

form .Forgot-password a {
    color: #3498db;
    text-decoration: none;
}

form .Forgot-password a:hover {
    text-decoration: underline;
}

.btn {
    margin: 10px 0;
    height: 45px;
    width: 100%;
    position: relative;
    overflow: hidden;
    border-style: solid;
    border-radius: 5px;
}

.btn .inner {
    height: 100%;
    width: 300%;
    position: absolute;
    left: -100%;
    z-index: -1;
    background: -webkit-linear-gradient(right, #1abc9c, #2ecc71, #27ae60, #3498db);
    transition: all 0.4s;
}

.btn:hover .inner {
    left: 0;
}

.btn button {
    height: 100%;
    width: 100%;
    background: none;
    border: none;
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    text-transform: none;
    letter-spacing: 1px;
    cursor: pointer;
}

form .login {
    text-align: center;
}

form .login a {
    color: #3498db;
    text-decoration: none;
}

form .login a:hover {
    text-decoration: underline;
}