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

body {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-image: linear-gradient(to left, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0)), url(assets/img/bg.jpg);
    background-size: cover;
    background-position: center;
}

.register {
    width: 750px;
    background: rgba(225, 225, 225, .10);
    border: 2px solid rgba(225, 225, 225, .2);
    box-shadow: 0 0 10px rgba(0, 0, 0, .5);
    backdrop-filter: blur(50px);
    border-radius: 10px;
    color: white;
    padding: 40px 35px 35px;
}

.register h1 {
    font-size: 30px;
    text-align: center;
    margin-bottom: 15px;
}

.register .input-box {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.input-box .input-field {
    position: relative;
    width: 48;
    height: 50px;
    margin: 13px 0;
}

.input-box .input-field input {
    width: 100%;
    height: 100%;
    background: transparent;
    border: 2.5px solid rgba(225, 225, 225, .2);
    outline: none;
    font-size: 16px;
    color: white;
    border-radius: 6px;
    padding: 15px 15px 15px 40px;
}

.input-box .input-field input::placeholder {
    color: white;
}

.input-box .input-field i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 20px;
}

.register label {
    display: inline-block;
    font-size: 14.5px;
    margin: 10px 0 23px;
}

.register label input {
    accent-color: rgb(0, 132, 255);
    margin-right: 5px;
}

.register .btn {
    width: 100%;
    height: 45px;
    background: rgb(0, 132, 255);
    border: none;
    outline: none;
    border-radius: 6px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    cursor: pointer;
    font-size: 16px;
    color: white;
}

@media (max-width:576px) {
    .input-box .input-field {
        width: 100%;
        margin: 10px 0;
    }
    
}