* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background: url(../images/bg_login.jpg) no-repeat;
    background-size: cover;
    background-position: center;
}

.wrapper {
    width: 420px;
    background: transparent;
    border: 4px solid rgba(255, 255, 255, .2);
    backdrop-filter: blur(30px);
    box-shadow: 0 0 10px rgba(0, 0, 0, .5);
    color: #051637;
    border-radius: 10px;
    padding: 30px 40px;
}

.wrapper .input-box {
    position: relative;
    width: 100%;
    height: 50px;
    margin: 20px 0;
}

.input-box input {
    width: 100%;
    height: 100%;
    background: transparent;
    outline: none;
    border: 2px solid #fff;
    border-radius: 40px;
    font-size: 16px;
    color: #051637;
    padding: 20px 45px 20px 20px;
}

.input-box input::placeholder {
    color: #051637;
}

.input-box svg {
    color: #dbdfe8;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 20px;
}

.bgbtn {
    width: 100%;
    height: 45px;
    background: #051637;
    color: #dbdfe8;
    border: none;
    outline: none;
    border-radius: 20px;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
}

.bgbtn:hover {
    background: #7C6F46;
    color: #dbdfe8;
    transition: transform 0.9s;
    transform: scale(1.05);
}

.bgbtn:active {
    background: #dbdfe8;
    color: #051637;
    transition: transform 0.5s;
    transform: scale(0.95);
}

.captcha {
    text-align: center;
    height: 120px;
}