.form-control {
    border: 1px solid #dadce0;
    border-radius: 4px;
    font-size: 16px;
    padding: 20px 12px;
    background: white;
    width: 100%;
    min-height: 56px;
}

.form-group {
    position: relative;
    margin-bottom: 30px;
}

.form-group label {
    position: absolute;
    top: 18px;
    left: 12px;
    background: white;
    padding: 0 4px;
    color: #80868b;
    font-size: 16px;
    transition: all .2s ease;
    pointer-events: none;
}

.form-control:focus ~ label,
.form-control:not(:placeholder-shown) ~ label {
    top: -8px;
    left: 8px;
    font-size: 12px;
    color: #1a73e8;
}

.toggle-password {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    color: #888;
    font-size: 18px;
} 