body{
    font-family: 'Poppins', sans-serif;
    background: url(../imgs/background.jpg);
    background-repeat: no-repeat;
    background-size: cover;
}

/* container */
.box-area{
    width: 1000px;
    background: linear-gradient(100deg,rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.1));
    border: 1px solid rgba(255, 255, 255, 0.20);
    backdrop-filter: blur(8px);
}

/* Left box */
.left-box {
    background: rgba(255, 255, 255, 0.6);
}
.left-box img {
    width: 250px;
}
.header-text p {
    font-family: 'Courier New', Courier, monospace; 
    font-weight: 600;
    font-size: 15px;
}
.header-text-icon {
    width: 55px;
    height: 55px;
    border: 1px solid #f504a8;
    background-color: transparent;
}
.header-text-icon i{
    color: #fff;
}
.left-box small {
    font-size: 20px;
    font-family: 'Courier New', Courier, monospace;
}
/* Right box */
.right-box{
    padding: 40px 30px 40px 40px;
}
.right-box small a {
    text-decoration: none;
    color: #f504a8;
    font-weight: bold;
}
/* Inputs */
.input-group {
    height: 40px;
    position: relative;
}
.input-group input {
    width: 100%;
    height: 100%;
    border: none;
    outline: none;
    font-size: 15px;
    color: #fff;
    caret-color: #fff;
    background-color: transparent;
    border-bottom: 1px solid silver;
}
.input-group label {
    color: #fff;
    position: absolute;
    bottom: 2px;
    padding: 0 2px;
    pointer-events: none;
    transition: all 0.3s ease;
}
.input-group i {
    color: #fff;
    position: absolute;
    font-size: 20px;
    bottom: 8px;
    right: 3%;
    pointer-events: none;
    transition: all 0.3s ease;
}
.input-group input:focus ~ label ,
.input-group input:valid ~ label {
    transform: translateY(-28px);
    font-size: 15px;
    color: #fff;
}
.input-group input:focus ~ i,
.input-group input:valid ~ i {
    transform: translateY(-28px);
    color: #fff;
}
.input-group input:-webkit-autofill,
.input-group input:-webkit-autofill:hover,
.input-group input:-webkit-autofill:focus,
.input-group input:-webkit-autofill:active {
    transition: background-color 5000s ease-in-out 0s;
    -webkit-text-fill-color: #fff !important;
}
.input-group input:focus {
    border-bottom: 2px solid #fff;
}

/* For Responsive */
@media only screen and (max-width: 768px){
    .box-area{
        margin: 0 10px;
    }
    .left-box{
        height: 100px;
        overflow: hidden;
    }

    .right-box{
        padding: 20px;
    }
}

