* {
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
}

body {
    height: 100%vh;
    background-color: rgba(0, 0, 0, 0.664);
    background-blend-mode: multiply;
    background-image: url(../images/2.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-attachment: fixed;
}

.box {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 80vh;
}

.container {
    width: 350px;
    display: flex;
    flex-direction: column;
    padding: 0 15px
}

span {
    color: #ffffff;
    font-size: 35px;
    display: flex;
    justify-content: center;
    padding: 10px 0;
}

header {
    color: #b1b1b1;
    font-size: 30px;
    display: flex;
    justify-content: center;
    padding: 10px 0;
}

.input-field {
    display: flex;
    flex-direction: column;
}

.input {
    height: 45px;
    width: 100%;
    border: none;
    outline: none;
    border-radius: 25px;
    color: #000000;
    padding: 0 0 0 45px;
    background: rgba(255, 255, 255, 0.5);
    box-sizing: border-box;
    font-size: 17px;
    /* ✨ 就是加上這一行 */
}

i {
    position: relative;
    top: -30px;
    left: 17px;
    color: #000000;
    pointer-events: none;
    /* 就是這一行！神奇吧！*/

}

::-webkit-input-placeholder {
    color: #3d3d3d7e;
}

.submit {
    border: none;
    border-radius: 25px;
    font-size: 16px;
    height: 45px;
    outline: none;
    width: 100%;
    background: rgb(255, 255, 255, 0.8);
    cursor: pointer;
    transition: .3s;
}

.submit:hover {
    box-shadow: 1px 5px 7px 3px rgba(0, 0, 0, 0.8);
    background-color: rgba(43, 240, 4, 0.322);
}

.bottom {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    font-size: small;
    margin-top: 10px;
    ;
    color: #ffffff;
}

.left {
    display: flex;
}

label a {
    color: #ffffff;
    text-decoration: none;
}