body {
    background-color: #b8344c;
}

/* Floating Label Container */
.form-group {
    position: relative;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 10px 10px 10px 45px;
    border: 1px solid #f48fb1;
    border-radius: 5px;
    outline: none;
    background: transparent;
}

.form-group label {
    position: absolute;
    top: 20px;
    left: 45px;
    font-size: 14px;
    color: #888;
    pointer-events: none;
    transition: 0.2s ease all;
    background-color: #fff;
    padding: 0 5px;
}

.form-group input:focus+label,
.form-group input:not(:placeholder-shown)+label,
.form-group select:focus+label,
.form-group select:valid+label {
    top: -10px;
    font-size: 12px;
    color: #b8344c;
}

/* Icon positioning */
.form-group i {
    position: absolute;
    /* left: 10px; */
    top: 50%;
    transform: translateY(-50%);
    color: #b8344c;
}