@import url('https://fonts.googleapis.com/css?family=Montserrat:400,800');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Montserrat", sans-serif;
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background: url('/GraphQL/assets/flowerbg.jpg') no-repeat;
    background-size: cover;
    background-position: center;
}


.wrapper {
    width: 420px;
    background: transparent;
    border: 2px solid rgba(255, 255, 255, .2);
    backdrop-filter: blur(10px);
    box-shadow: 0 0 10px rgba(0, 0, 0, .2);
    border-radius: 10px;
    padding: 30px 40px;
}

.wrapper h1 {
    font-size: 2.5em;
    color: #333;
    text-align: center;
    margin-top: 20px;
}

.wrapper h2 {
    font-size: 1.5em;
    color: #333;
    text-align: center;
    margin-top: 10px;
}

.wrapper .input-box {
    width: 100%;
    height: 50px;
    margin: 30px 0;
    position: relative;
}

.input-box input {
    width: 100%;
    height: 100%;
    border: 2px solid rgba(255, 255, 255, .2);
    outline: none;
    font-size: 1em;
    border-radius: 40px;
    padding: 20px 45px 20px 45px;
    box-sizing: border-box;
}

.input-box input::placeholder {
    border-color: #fff;
    transition: .5s;
}

.input-box .icon {
    position: absolute;
    left: 20px; 
    top: 50%;
    transform: translateY(-50%);
    color: #888;
    font-size: 20px;
    pointer-events: none; 
    z-index: 2;
}

.wrapper .btn {
    width: 100%;
    height: 45px;
    background: transparent;
    border: 2px solid rgba(255, 255, 255, .2);
    box-shadow: 0 0 10px rgba(0, 0, 0, .2);
    outline: none;
    font-size: 1em;
    border-radius: 40px;
    cursor: pointer;
    color: #333;
    font-weight: 600;
    margin-top: 5px;;
}
